$(document).ready(function() {
	$('#footer span').hide();
	$('#footer li a').hover(function() {
		$(this).parent().find('span').fadeIn(200)
	}, function() {
		$('#footer span').hide();
	});
    
    $('#products_list li:nth-child(5n+5), #productscategory_list li:nth-child(5n+5)').addClass('last');
    $('#products_list li:nth-child(5n+1), #productscategory_list li:nth-child(5n+1)').addClass('first');

		var prodHeight = 0;
		$('#products_list li, #productscategory_list li').each(function(index) {
			var thisHeight = $(this).height();
			
			if ( thisHeight > prodHeight) {
				prodHeight = thisHeight;
			};
		});
		
		// console.log(prodHeight);
		$('#products_list li').height(prodHeight);
		$('#productscategory_list li').height(prodHeight);
		
		

});

