
jQuery(document).ready(function(){
	$('ul li:last-child').addClass('last');

	
	/*$('.sub-products').each(function(i){  
		max_height = 0;
		$('.product_name',this).each(function(v){
			max_height  = Math.max(max_height, $(this).height());
		});
		$('.product_name',this).height(max_height);
	});*/
});
