$(document).ready(function() {
	
	//
	// increase link area
	//
	$('.hoverable > li, .hoverable_only > li').hover(
		function() {$(this).addClass('hover');},
		function() {$(this).removeClass('hover');}
	);

	$('.hoverable > li').live('click', function() {
		window.location = $(this).find("a").attr("href");
		return false;
	});
	
	
	//
	// Primary spots in home
	//
	$(".cat").equalizeCols();
    
    
}); 

