$(document).ready(function(){
	  $(".with-tooltip").simpletooltip();
	 if(!$.cookie('saveCity')) {
	  	$("a, img, input").each(function(){
			$(this).unbind("click");
			$(this).click(function(){
				$.get("/templates/AJAX.City.php", function(data){
					$("body").append('<div style="z-index:97;position:fixed;top:0;left:0;right:0;bottom:0;background:transparent url(/images/tr.png) 0 0 repeat;"><div style="background-color:#000;opacity:0.8;position:fixed;margin:0 auto;width:40%;height:auto;top:30%;left:25%;right:25%;z-index:98;">'+data+'</div></div>');
				});
				return false;
			});
		});
	  }
});
