$(document).ready(function(){
	(function($){
		$.fn.menuRollover  = function(){
		return this.each(function(){
			
			var fadeIn = $(this).fadeIn();
			
			$(this).hover(function(){
				$(this).find('ul:first').stop(true, true).fadeIn('fast');						   
				}, function(){
				$(this).find('ul:first').stop(true, true).fadeOut('fast');
				});
			});
		}
	})(jQuery);
});
