/*-------------------------------------------------------
* 说明：基于jQuery编写
* 作者：Gavin
* 创建时间：2008-10-27
* 最后一次修改时间：2009-03-04 
-------------------------------------------------------*/
$(window).load(function(){
	$(".productList").find('img').each(function(i){
		var w=$(this).width();
		var h=$(this).height();
		var cw=$(this).parent("a").width();
		var ch=$(this).parent("a").height();
		if(w/h < cw/ch ){
			$(this).css({
				height:ch,
				left:"50%",
				top:0,
				marginLeft:-ch*w/(h*2)
			});
		}
		else{
			$(this).css({
				width:cw,
				left:0,
				top:"50%",
				marginTop:-cw*h/(w*2)
			});
		}
	});
});
