$(document).ready(function() {
	hideSubMenus();
	
	$('#nav_cont li').filter('#nav_cont li li').hover(
		function() {
			$(this).addClass('selected');
			$(this).children('ul').fadeIn('fast');
			
			var timeout = $(this).attr('timeout');
			if(timeout) {
				clearTimeout(timeout);
				$(this).attr('timeout', null);
			}
		},
		function() {
			var this_ref = $(this);
			this_ref.removeClass('selected');
			
			var timeout = setTimeout(function(){
				this_ref.children('ul').hide();
			}, 100);
			
			this.attr('timeout', timeout);
			//hideSubMenus();
		});
});

function hideSubMenus()
{
	$('#nav_cont ul ul').hide();
}