// INITIERA SCRIPT
		
		// SCROLLA TILL TOPPEN UTAV SIDAN
		jQuery(document).ready(function() {
      	jQuery('a[href=#top]').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 'slow');
        return false;
    	}); });

		// OPACITET VID LÄNKAD BILD
		jQuery(document).ready(function(jQuery){
		jQuery("a img").hover(
		function() { jQuery(this).animate({"opacity": "0.6"}, "fast"); },
		function() { jQuery(this).animate({"opacity": "1"}, "fast"); }
		);});
		
		// MENY
		jQuery(document).ready(function() { 
		jQuery('ul.menu').superfish({ 
		delay:       1500,                            	// one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  	// fade-in and slide-down animation 
		speed:       'normal',                          // faster animation speed 
		autoArrows:  false,                           	// disable generation of arrow mark-up 
		dropShadows: false                            	// disable drop shadows 
        }); 
		}); 
		
		// CUFON
		Cufon.replace('h1, h2, h3, h4, h5, h6, #meny');
