$(document).ready(function() {
	$('.level1 > li').hover(function() {
		$('ul.level2, ul.level2 > .act > ul, ul.level2 > .cur > ul', this).stop(1, 1).fadeIn(200);
		$('a:first', this).addClass('act');
	}, function() {
		$('ul.level2, ul.level2 > .act > ul, ul.level2 > .cur > ul', this).stop(1, 1).fadeOut(300);
		$('a:first', this).removeClass('act');
	});
	
	$('li:not(.extended) .level2 > li').hover(function() {
		$('ul.level3', this).stop(1, 1).slideDown(100);
		$('a:first', this).addClass('act');
	}, function() {
		$('ul.level3', this).stop(1, 1).slideUp(100);
		$('a:first', this).removeClass('act');
	});
	
	$(".equalHeightContainer").each(function() {
		$(".equalHeightItem", this).equalizeCols();
	});
});

$(window).load(function() {

});