// JavaScript Document
$(document).ready(function() {

	$("ul#menu-elysium li").hover(function() {
		
		$(this).children('ul.sub-menu').show();
		$(this).addClass('hovered');
		
	},function() {
		
		$(this).children('ul.sub-menu').hide();
		$(this).removeClass('hovered');
		
	});
	
});
