function openWindow(img,wi,he) {
	window.open(img,'mywin','left=10,top=10,width='+wi+',height='+he+',toolbar=0,resizable=0');
}

function putPopups () {
	$(".galleryImage").css("cursor","pointer");
	$(".galleryImage").each(function() {
		var link = $(this).find("img.imgFirst").attr("src");
		link = link.split('/');
		link = link.reverse();
		link = link[0].split('sma-');
		var id = $(this).parent().attr("id");
		var wihe = $(this).find("img:first").attr("alt");
		wihe = wihe.split("-");
		$(this).attr("href","javascript:openWindow('/show.php?i=/data/images/"+id+"/big-"+link[1]+"',"+wihe[0]+","+wihe[1]+")");
	});
}

$(document).ready(function() {
	putPopups();
 });





