$(document).ready(function() {
    	  
    $('#wrapper, #footerWrapper').fadeIn(600);
    	  
   // nyhetshover
	$('.news ul li, .references ul li').click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

      $('.news ul li, .references ul li').hover(
        function () {
          $(this).stop().fadeTo("slow", 0.7);
        }, function () {
          $(this).stop().fadeTo("fast", 1);
      });

});


