/* Bildspel */
	$(document).ready(function(){
		$('#myslides').cycle({
			fx: 'fade',
			random:	'true',
			speed: 'slow',
			timeout: 6000
		});
	});
	
/* Meny */
    $(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;
	});
	$("a[href*='https://']:not([href*='"+location.hostname+"'])").click( function() {
	window.open(this.href);
	return false;
	});
	});

