(function($) {

	$.fn.navtabHover = function() {
		
		return this.each(function() {
			
			var tabbox = $(this);
			var thefill = $('div',this);
			
			thefill.css({ position: 'absolute', top: '-2px', height: '18px' }).hide();
			
			tabbox.hover(function() {
				thefill.slideDown(375);
			}, function() {
				thefill.slideUp(375);
			});
		});
		
	}
			
})(jQuery);
// JavaScript Document
