$(window).load(function() {
    $('#slider').nivoSlider({
        effect:'fade', 
        animSpeed:500, 
        pauseTime:5000
    });
		
	$('#navigation li').each(function() {
		$(this).mouseover(function() {
			$(this).addClass('hover');
    });
		$(this).mouseout(function() {
			$(this).removeClass('hover');
    });
	});

		
});
