  
/* init navigation */

jQuery(document).ready(function() { 

   jQuery('ul.sf-menu').superfish({
      dropShadows:  true,
      speed:       'fast', 
      delay:       150,
      animation:   {opacity:'show', height:'show'}
   });
   
   jQuery('.teaser').find('img').stop().fadeTo(200, 1);
   
   jQuery('.teaser a').hover(
	   function() {
	   	jQuery(this).find('img').fadeTo(200, 0.7);
	   },
	   function() {
	    jQuery(this).find('img').fadeTo(200, 1);
	   }); 
});


 


