$(document).ready(function(){ 
				$("#nav").superfish({ 
           			delay:       00,                    // fade-in and slide-down animation 
            		speed:       600,                   // faster animation speed
            		animation:   {opacity:'show'}, 
            		autoArrows:  false,                // disable generation of arrow mark-up 
            		dropShadows: false                // disable drop shadows 
        		});
        		$("#content .right .top").click(function() {
        			$('body').scrollTo("0", 800);
        		});
    		}); 
