

$(document).ready(function() {

$('ul.sf-menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: true,                            // disable drop shadows
            pathClass:     'currentitem'
             
        });
	

        
        
$('.verksamhetimage>a>img').hover(function(){

	$(this).css('opacity', '0.7');
	//$(this).css('margin', '0px');
	//$(this).css('border', '3px dashed #1e328b');
	
}, 
function(){
	
	$(this).css('opacity', '1.0');
	//$(this).css('margin', '3px');
	//$(this).css('border', '0px');
	
}



);

$('.maillink').hover(function(){

	$(this).css('color', '#3e3e3e');
	
	
}, 
function(){
	
	$(this).css('color', '#cf2b2c');
	
}



);


//$('.sf-menu').corner("8px");
/*
$('.sf-menu li:first-child').css(
'color', '#dddddd'

);
*/

$('.verksamhetfooter').corner("5px bottom");

/*
$('.sf-menu>li:first-child>a:first-child').css(
'background', '#cf2b2c'

); 

$('.nyhet').corner("8px"
        );
        
$('.nyhetstext').corner("8px"
        );
*/
//$('.sf-menu>li>ul li:last-child').corner("8px");      

//$('.sf-menu>li>ul').corner("8px");


});



