// JavaScript Document

  $(document).ready(function(){
	$(".menu ul li").hover(function(){
			var hoverText = $(this).find("ul").eq(0);
			$(this).addClass("hover");
			$(hoverText).show();
		},
		function(){
			$(this).find("ul").hide();
			$(this).removeClass("hover");
		});
		
	});


    $(window).load(function() {
            $('#slider').nivoSlider({ pauseTime:5000, pauseOnHover:false });
    });

