$(document).ready(function() {
	
	// preset
	var menu_level2_height = $(".level1 > div").height();
	
	$(".level1 > div").css({"height":0,"opacity":0});
	
	// hover on first level, the locations
	$(".level1").hover(
		function() {
			$(this).children("div").stop().animate({
			    opacity: '1',
			    height: menu_level2_height
			}, { queue:false, duration:600 }, function() {
				// Animation complete.
			});
		},
		function() {
			$(this).children("div").stop().animate({
			    opacity: '0',
			    height: 0
			}, { queue:false, duration:600 }, function() {
				// Animation complete.
			});
		}
	);
	
	$(".level1 ul a").bind('click', function(event) {
		var link = $(this).attr("href");
		event.preventDefault();
		$(".level1 > div").stop().animate({
		    opacity: '0',
		    height: 0
		}, { queue:false, duration:600 }, function(link) {
			// Animation complete.
		});
		 window.location = link; 
	});

});
