
$(pageSetup);
function pageSetup() {
$("#priceTable div.samplePrices, #priceTable h3.sampleHeader, #priceTable h4.arrTableHeader, #priceTable h3.depTableHeader").hide();
$("#dropLabel, #arr, #dep").show();
$("#dep").change(function () {
outputData();
});
$("#arr").change(function () {
outputData();
});
if(document.nav_form.logintype.value=='execclub' || document.nav_form.logintype.value=='inet') {
flashSwitch('/cms/global/flash/offerus124/offerus124_post.swf', 760, 235, '8', '', 'altContent3', 'wMode:opaque', false);
}
else
{
flashSwitch('/cms/global/flash/offerus124/offerus124_pre.swf', 560, 235, '8', '', 'altContent2', 'wMode:opaque', false);
}
outputData();
}
function outputData()
{
var priceTable = "";
var lastTable = "";
if(($("#dep option:selected").val() != "NON") && ($("#arr option:selected").val() != "NON"))
{
$("#priceTable div.samplePrices:visible").hide();
priceTable = "#" +
$("#dep option:selected").val() +
" ." +
$("#arr option:selected").val();
$(priceTable).show();
}
else
{
$("#priceTable div.samplePrices:visible").hide();
}
}
