

$(document).ready(function() {

	

$('.verksamhetsomrade img').css(
        'opacity', '.7'
        );
        
        
$('.verksamhetsomrade img').hover(function(){

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



);

$('.nyhet').corner("8px"
        );
        
$('.nyhetstext').corner("8px"
        );

      


});



