function navControl()
{
	$('#nav li ul').hide();
	
	$('#nav li').hover(
	function()
		{
			$(this).find('ul').stop(true, true).delay(200).slideDown(500);
			
		},function()
		{
			$(this).find('ul').stop(true, true).delay(200).slideUp(200);
		}
	);	
}

function imgSwap()
{
	$('#bImg img').hide();
	$('#pImg img').hide();
	
	$('#bImg').hover(
	function()
		{
			$('#pImg img').stop(true, true).fadeIn(700);
			
		},function()
		{
			$('#pImg img').stop(true, true).fadeOut(700);
		}
	);	
	
	$('#pImg').hover(
	function()
		{
			$('#bImg img').stop(true, true).fadeIn(700);
			
		},function()
		{
			$('#bImg img').stop(true, true).fadeOut(700);
		}
	);	
}


$(document).ready(function()
{
	navControl();
	imgSwap();
});
