(function($) {
	$(document).ready(function(){ 
	
	     // Shadow
		$(document).scroll(function(event){
			if($(this).scrollTop() > 1 ){
				$('.headertop').addClass('shadow');
			}
			else {
				$('.headertop').removeClass('shadow');
			}
		});
		
				
		//Navigation 
		$('#mainnav li').hover(function(){
			$('> .children',this).stop().height('auto').slideDown(150);
		}, function(){
			$('> .children',this).stop().slideUp(150);
		});
	
	}); /* end document ready */

})(jQuery);





















