$(document).ready(function(){$("#ttypeselect").bind(($.browser.msie?"propertychange":"change"),function(){if($("#ttypeselect").val()=='1'){$("#airporttext").html("Arrival Airport");$("#resorttext").html("Arrival Resort")}else{$("#airporttext").html("Departing Airport");$("#resorttext").html("Departing Resort")}return false});$("#quote").click(function(){var pax=parseInt($("#adult").val())+parseInt($("#baby").val());if(pax>14){alert('In demand of more than (14) please contact us');return false}$("#content").empty().html('<img src="http://www.qxygene.net/ajax-loader.gif" />');var poststring="p="+pax;poststring+="&airport="+$("#airportselect").val();poststring+="&resort="+$("#resortselect").val();poststring+="&curr="+$("#curr").val();poststring+="&ttype="+$("#ttypeselect").val();poststring+="&baby="+$("#baby").val();$.ajax({type:'POST',url:'http://www.qxygene.net/getv.php',data:poststring,success:function(ajaxCevap){$("#content").html(ajaxCevap)}});return false})});function resortrefresh(){return false}$(function(){$('#quote').hover(function(){$(this).addClass('ajaxbtnh')},function(){$(this).removeClass('ajaxbtnh')})});