jQuery.jFastMenu = function(id){
	$(id).find('ul').find('li').hover(function(){

		clearTimeout($(this).data('jQueryMenu'));
		$(this).find('ul:first').animate({height:'show'}, 400);
	},

	function(){

		var mm = $(this);
		var timer = setTimeout(function(){
			mm.find('ul:first').animate({height:'hide', opacity:'hide'}, 100);
		}, 300);
		$(this).data('jQueryMenu', timer);

	});

},

	$(document).ready(function(){
		$.jFastMenu("#menu");		
	});
			

	
	
$(function() {
    $("#toTop").scrollToTop({speed:1000,ease:"easeOutExpo",start:100});
});

