// initialise plugins
$(function(){
	$('ul.sf-menu').superfish();
});

$(document).ready(function(){
   $(".darkimage").hover(function () {
   
      $(this).animate({
        opacity: 1
      }, 300);
      
   }, function(){
   
      $(this).animate({
        opacity: 0.8
      }, 300);   
   
   });
});
