
function count(site) {
img = new Image();
img.src = 'counter.php?id='+site;
}



nokiaPopup = {

		popup : "",
		popupOpener : "",

		open : function(opener, type, url, thumb) {
				
						
				this.popup = $("#popup").get(0);
				this.popupOpener = $(opener);

				if(type == "image")
					$(this.popup).find("div.inner-inside").html('<img width="800" height="600" src="' + url + '" alt="" />');
				count(url);
				

		$("#popup-shadow").click(function() { nokiaPopup.hide(); }).removeClass("hidden");
		//$(this.popup).removeClass("hidden").css("top", (($(document).scrollTop() + ($("body").height() / 2)) - ($(this.popup).height() / 2)) + "px");
		$(this.popup).removeClass("hidden").css("top", ($(document).scrollTop() + 150) + "px");

				return false;
		},
		
		hide : function() {

				$("#popup-shadow").addClass("hidden");
				$(nokiaPopup.popup).addClass("hidden");
				
				return false;
		}
}
