$(document).ready(function()
{
	$('#navigation > li:has(ul)').mouseenter(function(e)
	{
		$this    = $(this);
		$subMenu = $this.children('ul');
		
		// Display menu.
		$subMenu.css('display', 'block');
	});
	
	$('#navigation > li:has(ul)').mouseleave(function(e)
	{
		$this    = $(this);
		$subMenu = $this.children('ul');
		
		// Display menu.
		$subMenu.css('display', 'none');
	});
});
