jQuery(document).ready(function(){
	jQuery('ul li:first-child').addClass("firstItem");
	jQuery('ul li:last-child').addClass("lastItem");
	var config = {   
		sensitivity: 3, 
		interval: 0,  
		over: doOpen, 
		timeout: 100, 
		out: doClose  
	};

	function doOpen() {
		jQuery('ul:first',this).stop(true, true).slideDown('fast');		
	}
	function doClose() {		
		jQuery('ul:first',this).stop(true, true).slideUp('fast');
		
	}

	jQuery('.menu li').hoverIntent(config);
	$('a[href=#top]').click(function(){
	        $('html, body').animate({scrollTop:0}, 'slow');
	        return false;
	    });
});




