
$(pageSetup);
function pageSetup() {
$(".priceInfo h4, .priceInfo:visible").hide();
$("#departure").keyup(function() {showPrice();});
$("#departure").change(function() {showPrice();});
var fromCode = getQueryValue("from").toUpperCase();
if(fromCode && (fromCode.toUpperCase() != "NOT FOUND")) {
$("#departure option[@value='" + fromCode + "']").attr("selected", "selected");
}
showPrice();
}
function showPrice()
{
$(".priceInfo:visible").hide();
var newPrice = $("#departure option:selected").attr("value").toLowerCase();
$("#" + newPrice).show();
var newLink = "/main/fx?from=" + newPrice.toUpperCase() + "&to=LON&cabin=J";
$("#bookNowLink").attr("href", newLink);
}
