function navControl()
{
	$('#mainNav li ul').hide();
	$('#mainNav ul.dropdown2').hide();
	
	$('#mainNav li').hover(
	function()
		{
			$(this).find('ul.dropdown').stop(true, true).delay(200).slideDown(500);

			
		},function()
		{
			$(this).find('ul.dropdown').stop(true, true).delay(200).slideUp(200);
		}
	);
	
	$('#mainNav ul.dropdown li').hover(
	function()
		{
			$(this).find('ul.dropdown2').stop(true, true).delay(200).show(500);

			
		},function()
		{
			$(this).find('ul.dropdown2').stop(true, true).delay(200).hide(200);
		}
	);	
}


$(document).ready(function()
{
	navControl();
	$('#gallery a').lightBox();
	
});
