
            $(window).load(function () {
            $('#slider').nivoSlider({
            effect: 'sliceDown',
            animSpeed: 500,
            pauseTime: 8000,
            directionNav: true, //Next and Prev
            directionNavHide: false, //Only show on hover
            controlNav: true, //1,2,3...
            keyboardNav: true, //Use left and right arrows
            pauseOnHover: true, //Stop animation while hovering
            manualAdvance: false, //Force manual transitions
            captionOpacity: 0.8, //Universal caption opacity
            beforeChange: function () { },
            afterChange: function () { },
            slideshowEnd: function () { } //Triggers after all slides have been shown
            });

            	        $('#mnu_home').replaceWith('Home').remove('a');

            	    });
            
            $(document).ready(function(){
            //To switch directions up/down and left/right just place a "-" in front of the top/left attribute
            //Partial Sliding (Only show some of background)
            $('.boxgrid.peek').hover(function(){
            $(".cover", this).stop().animate({top:'30px'},{queue:false,duration:160});
            }, function() {
            $(".cover", this).stop().animate({top:'0'},{queue:false,duration:160});
            });
            });
            
