/* COMMON
/*------------------------------------------------------------------------------------------------------------------------------------*/

$(document).ready(function(){
	initMenu();
});

/* MENU
/*------------------------------------------------------------------------------------------------------------------------------------*/

function initMenu(){
	// Set menu opacity
	$('#menu ul').css('opacity', 0.9);
	
	// Set submenu interaction
	$('#menu > li').hover(
		function(){
			$(this).addClass('hover');
			$(this).find('ul').stop(true, true).slideDown(300);
		},
		function(){
			$(this).removeClass('hover');
			$(this).find('ul').stop(true, true).slideUp(300);
		}
	);
}