<!-- hide from non JavaScript Browsers

$(document).ready(function(){
						   
	counter = 0;					   
		
	$(".prodCont,.catCont").each(function (i) {
								  
		$(this).children("div.prodBottom,div.catBottom").each(function (i) {
									  
		counter++;						  
		var parentHeight = $(this).parent().parent().outerHeight(true);
		var parent = $(this).parent().parent();

		var prodBottomHeight = $(this).outerHeight(true);	
		var remainder = (parentHeight - prodBottomHeight) - 100;
		remainder = remainder + 4;
		$(this).css("padding-bottom", remainder + "px");
			//alert(parentHeight + " " + prodBottomHeight + " " + remainder + " " + newheight);
		
		newheight = 0;	
		remainder = 0;
		});	
			
	});	
	return null;	
});

// End Hiding -->
