var pageWidth = jQuery(window).width();  
var pageHeight = jQuery(window).height(); 

jQuery(window).resize(function() {
	pageWidth = jQuery(window).width();  
	pageHeight = jQuery(window).height();
});

function SZEK_InitProductsThumbs() {
	jQuery(".thumb_pic").mouseover(function(e) {
		var p = jQuery(this).position(), w = jQuery(this).width(), h = jQuery(this).height();
		var x, y, w2 = 500, h2 = 500;		
		if (p.left + w + w2 > pageWidth) {
			x = (p.left - w2);
		} else {
			x = (p.left + w);
		}		
		y = p.top;
		var bpp = jQuery("#big_product_pic");
		bpp.html("<img src='"+jQuery(this).attr("src").replace("/thumbs", "")+"' width='"+w2+"'>");				
		if (p.top + h2 > pageHeight + jQuery(window).scrollTop()) {
			y = p.top + h - h2;
		}		
		bpp.css("left", x).css("top", y).fadeIn("fast");
	}).mouseout(function() {
		jQuery("#big_product_pic").fadeOut("fast");
	});	
}

jQuery(document).ready(function() {
	SZEK_InitProductsThumbs();
});
