$(function() {
	$("#header_callcenter a").hover(
			function () {$("#popup-callcenter").show();},
		    function () {$("#popup-callcenter").hide();}
	);
	
	$(".popper").click(function(){
		w = h = 0;
		s = r = "yes";
		switch($(this).attr("id")){
			case "geotrust":
				w = 400;
				h = 450;
				break;
			default :
				w = 400;
				h = 400;
				break;
		}
		geo = window.open($(this).attr("href"),"geo","scrollbars="+s+",width="+w+",height="+h+",resizable="+r);
		geo.focus();
		return false;
	});
	
	$("a.hotelsearch").click(function(){
		form = $("#hotelsearch");
		$("input[name='hotel_id']",form).attr('value', $(this).attr('alt'))
		form.submit();
		return false;
	});
	
	$("a.listingsearch").click(function(){
		form = $("#listingsearch");
		$("input[name='place_id']",form).attr('value', $(this).attr('alt'))
		form.submit();
		return false;
	});
});