$(document).ready(function() { 
 
   $('.dropdown').hover(function() {
   
     $(this).find('ul').stop(true,true).fadeIn('fast');
   
   }, function() {
   
     $(this).find('ul').stop(true,true).delay(600).fadeOut('fast');
   
   });
   
   $('ul#navigation li ul li a').hover(function() { // Check wheter a subnav menu item has been hovered over.   

   }, function() { 

	 $(this).stop(true,true).fadeTo("slow",0.2); // Fade to a lower opacity.
	 $(this).stop(true,true).fadeTo("fast",1); // Fade to Original opacity.

   }); 
   
});
