
$(function(){$('form#ad-form select').change(function(){if($('form#ad-form select:eq(1) option:selected').val()!=""){$('#pricebox-below-price span, #ad-unavailable').hide();$('#ad-loading').show();$('#pricebox-below-price span').load('/taxi/ad-availability.html',{airport:$('form#ad-form select:eq(0) option:selected').val(),ad:$('form#ad-form select:eq(1) option:selected').val()},function(){setTimeout("showAdPrice()",750);});}else{$('#pricebox-below-price span, #ad-unavailable').hide();$('#create-button').attr("disabled","disabled").animate({opacity:0.5},500);}});if($('form#ad-form select:eq(1) option:selected').val()==""){$('#create-button').attr("disabled","disabled").css("opacity","0.5");}});function showAdPrice(){$('#pricebox-below-price div').hide();if($('#pricebox-below-price span').html()=="0"){$('#ad-unavailable').html("Sorry that advert is not available. Please try another advert or airport.").css({color:"#f2d432"}).fadeIn('fast',function(){$(this).animate({color:'white'},2000);});$('#create-button').attr("disabled","disabled").animate({opacity:0.5},500);}else{$('#pricebox-below-price span').html('&pound;'+$('#pricebox-below-price span').html()).fadeIn('fast');$('#create-button').attr("disabled","").animate({opacity:1.0},500);}}