function navControl()
{
	$('#mainNav li ul').hide();
	
	$('#mainNav li').hover(
	function()
		{
			$(this).find('ul').stop(true, true).delay(200).slideDown(500);
			$(this).css({backgroundColor: '#afd0bb'});
			//$(this).css({backgroundColor: '#dedec9'});

			
		},function()
		{
			$(this).find('ul').stop(true, true).delay(200).slideUp(200);
			$(this).css({backgroundColor: '#dedec9'});
		}
	);
	
	(function($) {
	$(function() { //on DOM ready
		$("#scroller").simplyScroll({
			autoMode: 'loop'
		});
	});
})(jQuery);
	
}




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