$(document).ready(function () { 
     //ADD DROPDOWN FUNCTIONALITY
    $('nav li').hover(
        function () {
            //show its submenu
            $(this).children('div.dropdown').fadeIn(200);
 
        }, 
        function () {
            //hide its submenu
            $(this).children('div.dropdown').fadeOut(200);
        }
    );
});

$(window).load(function() {
    $('#slider').nivoSlider({
		pauseTime:5500,
		effect: 'fade',
		animSpeed:400
	});
});
