// RESIZE IMAGE SHOW PRODUCT
$(function(){
		ritardo = setTimeout(function(){
		   	var imgShow = $("#product-show");							  
			if (imgShow.width()>510) {
				 var h = Math.floor(imgShow.height()*(510/imgShow.width()));
				 imgShow.width(510);
				 if (h>250) {
					imgShow.height(h);
				 }
			}
			clearTimeout(this);
		 },200);
});
