jQuery(function(){
	
	// Asset show/hide function for description and claim of products
	jQuery('.packasset').hover(
		    function(){
		        jQuery(this).find('.prd-desc, .claim').toggleClass('hidden');
		},
		    function(){
		        jQuery(this).find('.prd-desc, .claim').toggleClass('hidden');
		}
		);
	
	// Equal height for "todos los pañales" & "todas las toallitas"
	jQuery('.assetdisplay.template2').each(function(i){
	    var colH = jQuery(this).find('.columnleft').height();
	    var assetH = jQuery(this).find('.assetset').height();
	    if(colH>assetH){
	        jQuery(this).find('.assetset').height(colH);
	    }
	});
	
});
