
jQuery(function(){WLC.areaMapSearch.init();jQuery("#countryId").change(WLC.areaMapSearch.toggleMap);});WLC.areaMapSearch={init:function(){this.toggleMap();jQuery("#mapsearch_map area").click(function(e){WLC.areaMapSearch.redirect(e.target);return false;});},redirect:function(target){if(jQuery("#buy").is(":hidden")){this.categoryIds=jQuery("input:radio[name=categoryIdRent]:checked").val().split(",");this.transactionTypeId=2;}else{this.categoryIds=jQuery("input:radio[name=categoryIdSale]:checked").val().split(",");this.transactionTypeId=1}
if(this.categoryIds.length>1){this.category="&categoryIds="+this.categoryIds.join("&categoryIds=");}else{this.category="&categoryId="+this.categoryIds[0];}
if(WLC.areaMapSearch.blnMetropolis){this.city=jQuery(target).attr("href");this.newUrl=this.url.replace("&amp;","&")+"&selectedOnlineDuration=1&transactionTypeId="+this.transactionTypeId+"&city="+this.city.substr(1)+this.category;}else{this.regionId=jQuery(target).attr("id").substr(5);this.newUrl=this.url.replace("&amp;","&")+"&selectedOnlineDuration=1&transactionTypeId="+this.transactionTypeId+"&regionId="+this.regionId+"&regionIds="+this.regionId+this.category;}
window.location.href=this.newUrl;},categoryIds:[],transactionTypeId:null,regionId:"",category:"",city:"",newUrl:"",toggleMap:function(){if(jQuery("#countryId").val()=="CH"){jQuery("#mapsearch_map").show();}else{jQuery("#mapsearch_map").hide();}}}