function imageAlign() {
	if (jQuery(".short_product").length>1) {
		jQuery(".short_product img").each(function() {	
			/*alert("\
				  la width: "+jQuery(this).width()+"\
				  la height: "+jQuery(this).height()+"\
				  ")
			jQuery(this).css({
				"width"  : jQuery(this).width()+"px",
				"height" : jQuery(this).height()+"px",
				"margin" : "-"+Math.round(jQuery(this).width()/2)+"px 0 0 -"+Math.round(jQuery(this).height()/2)+"px",
				"position" : "absolute",
				"left" : "50px",
				"top" : "50px"
			});*/
		});
	}
}
