﻿jQuery(document).ready(function()
{
	HighlightAirline();
});

// Highlight Choosen Airline
function HighlightAirline(){
	// Using hash from the location in the url - highlight the choosen airline in the listings
	// The airline code should only be 2 characters
	var AirlineCode = "airline-"+document.location.hash.slice(-2).toLowerCase();
	$("#page #content .listing ."+AirlineCode).addClass("terminal")
}
