
$(document).ready(function(){$('#sf_submit').hover(function(){$(this).attr('src','http://c3.dmstatic.com/i/button_search_on.png');},function(){$(this).attr('src','http://c0.dmstatic.com/i/button_search_off.png');});$('#mnb').change(function(){if(parseInt($(this).val())>parseInt($('#mxb').val()))
$('#mxb').val($(this).val());});$('#mxb').change(function(){if(parseInt($(this).val())<parseInt($('#mnb').val()))
$('#mnb').val($(this).val());});$('#mnp').change(function(){if(parseInt($(this).val())>parseInt($('#mxp').val()))
$('#mxp').val($(this).val());});$('#mxp').change(function(){if(parseInt($(this).val())<parseInt($('#mnp').val()))
$('#mnp').val($(this).val());});$('#tabs #tabs_sale').click(function(){overseas_type='tabs_sale';$('#tabs li').removeClass('active');$(this).addClass('active');$(this).css('cursor','default');$('#search_type').val('international_sale');$('#price').text('What is your price range?');$('#mnp, #mxp, #pt_id, #country, #region').empty();$('#price_loading, #type_loading, #country_loading, #region_loading').show();$.post('/ajax_endpoint.php',{'action':'sf_international_search_change','search_type':'international_sale','cc_id':$('#country').val(),'continent_id':$('#continent').val()},function(data){$('#country').append('<option value="">Any</option>'+data['country_options']);$('#mnp').append('<option value="">Any</option>'+data['price_options']);$('#mxp').append('<option value="">Any</option>'+data['price_options']);$('#pt_id').append('<option value="">Any</option>'+data['type_options']);$('#region').append('<option value="">Any</option>');$('#price_loading, #type_loading, #country_loading, #region_loading').hide();},'json');});$('#tabs #tabs_rental').click(function(){overseas_type='tabs_rental';$('#tabs li').removeClass('active');$(this).addClass('active');$(this).css('cursor','default');$('#search_type').val('international_rental');$('#price').text('What is your price range per week?');$('#mnp, #mxp, #pt_id, #country, #region').empty();$('#price_loading, #type_loading, #country_loading, #region_loading').show();$.post('/ajax_endpoint.php',{'action':'sf_international_search_change','search_type':'international_rental','cc_id':$('#country').val(),'continent_id':$('#continent').val()},function(data){$('#country').append('<option value="">Any</option>'+data['country_options']);$('#mnp').append('<option value="">Any</option>'+data['price_options']);$('#mxp').append('<option value="">Any</option>'+data['price_options']);$('#pt_id').append('<option value="">Any</option>'+data['type_options']);$('#region').append('<option value="">Any</option>');$('#price_loading, #type_loading, #country_loading, #region_loading').hide();},'json');});$('#continent').change(function(){$('#country_loading, #region_loading').show();$('#country, #region').empty();$.post('/ajax_endpoint.php',{'action':'sf_continent_change','continent_id':$(this).val(),'ad_type':overseas_type.substring(5)},function(data){$('#country').append('<option value="">Any</option>'+data['country_options']);$('#region').append('<option value="">Any</option>');$('#country_loading, #region_loading').hide();},'json');$.cookie('s[search][continent]',$(this).val(),{expires:7,path:'/'});$('#sf_map_link').attr('href','/searchinternational.daft?s[search_type]=international_sale&map=1&s[continent_id]='+$(this).val());});$('#country').change(function(){$('#region').empty();$('#region_loading').show();$.post('/ajax_endpoint.php',{'action':'sf_country_change','country_id':$(this).val(),'ad_type':overseas_type.substring(5)},function(data){$('#region').append('<option value="">Any</option>'+data['options']);$('#region_loading').hide();},'json');$.cookie('s[search][country_id]',$(this).val(),{expires:7,path:'/'});});$('.sf_four_props img').hover(function(){$(this).css('border-color','#666');},function(){$(this).css('border-color','#aeaeae');});});
