// JavaScript Document
$(function(){
	$(".subCategoryListItem").hover(function(){$(this).addClass("subCatHover");},function(){$(this).removeClass("subCatHover")});
	/*var L;
	if(L = $(".subCategoryListItem").length){
		
		for(var i=0;i < Math.ceil( L /4);i++){
			tmp = i * 4 -1;
			max = Math.max(
			        $(".subCategoryListItem :eq("+(tmp++)+")").height(),
					$(".subCategoryListItem :eq("+(tmp++)+")").height(),
					$(".subCategoryListItem :eq("+(tmp++)+")").height(),
					$(".subCategoryListItem :eq("+(tmp++)+")").height());
			console.log(max);
			
		    $(".subCategoryListItem :eq("+(tmp)+")").height(max);
			console.log(tmp);
			$(".subCategoryListItem :eq("+(tmp--)+")").height(max);
			console.log(tmp);
			$(".subCategoryListItem :eq("+(tmp--)+")").height(max);
			console.log(tmp);
			$(".subCategoryListItem :eq("+(tmp--)+")").height(max);
			console.log(tmp);
		}
	}*/
})
