$(document).ready(function()
{

	/* ========== NAVIGATION SLIDEOUT ========== */
	$('#navi ul li').mouseenter( function()
	{
		if ($('> ul', this).html() != null)
		{
			$(this).addClass('hover');
		}
	});
	$('#navi ul li').mouseleave( function()
	{
		$(this).removeClass('hover');
	});

});
