/* EASY DROPDOWN by i3Design.at (Gerhard Kanzler) */

$.fn.dropDown = function(){
       var nav = $(this);
       nav.find('li').each( function(){
	   	
              if( $(this).find('ul').length > 0 ){
			  	
            $('ul', this).hide().css({ 'position': 'absolute' });
			
                     $(this).mouseenter( function(){
					 	
                            $(this).find('ul').stop(true, true).fadeIn();
							
                     });
                     $(this).mouseleave( function(){
                            $(this).find('ul').stop(true, true).fadeOut();
                     });
              }
       });
};





