/* TopMeny */
    $(document).ready(function() { 
        $('ul.sf-menu').superfish({ 
            delay:       1000, 
            animation:   {opacity:'show',height:'show'}, 
            speed:       'fast', 
            autoArrows:  true, 
            dropShadows: true
        }); 
    });

/* Öppnar länkar i nytt fönster */
	$(document).ready(function() {
		$("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
			window.open(this.href);
			return false;
		});
	});

