
jQuery(document).ready(function($){
	if ($("a[you^='prettyPhoto']").length) {
		$("a[you^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',theme:'light_square'});
	}
});




var orgImgProd = '';
var orgImgProdS = '';
var actImgProd = '';
var actImgCid  = '';
function swapProdImg(img, w1, w2, cid) 
{
	var d = document;
	var o = d.getElementById('largeImg').src;
	
	var tmp_cur_img = o.split("&h=");
	var cur_img = tmp_cur_img[0] + "&h=" + w2;
	
	var tmp_new_img = img.split("&h=");
	var new_img = tmp_new_img[0] + "&h=" + w1;
	
	if (orgImgProd == '')
	{
		orgImgProd = o;
		orgImgProdS = cur_img;
		actImgProd = o;
	}
	if (actImgCid == cid)
	{
		d.getElementById('mainImg').innerHTML = '<img src="'+new_img+'" id=\"largeImg\" />';
		d.getElementById(cid).src = cur_img;
		actImgCid  = '';
		actImgProd = orgImgProd;
	}
	else
	{
		if (actImgCid != '')
		{
			d.getElementById(actImgCid).src = actImgProd;
		}
		d.getElementById(cid).src = orgImgProdS;

		d.getElementById('mainImg').innerHTML = '<img src="'+new_img+'" id=\"largeImg\" />';
		//d.getElementById('popup').href = tmp_new_img[0]+'&h=750';
		actImgCid  = cid;
		actImgProd = img;
	}
}