(function($){
	$.fn.eqHeight = function(){
		var obj = $(this);
		var maxHeight = 0;
		this.each(function(){
			if($(this).height() > maxHeight){
				maxHeight = $(this).height();
			}
		});
		obj.height(maxHeight);
	}
	
	$.fn.eqWidth = function(){
		var obj = $(this);
		var maxWidth = 0;
		this.each(function(){
			if($(this).width() > maxWidth){
				maxWidth = $(this).width();
			}
		});
		obj.width(maxWidth);
	}
})(jQuery);
$(window).bind('load', function(){
	$('#product_list .item-wrap').eqHeight();
});
