(function($){

	$.fn.activeNavi = function(settings){

		var conf = {
			'speed': 'slow'
		};
		if (settings) $.extend(conf, settings);

		this.each(function(){

			$('li',this).each(function(){
				$(this).append($('<div></div>').css({width:$(this).width()+'px', height:$(this).height()+'px', display:'none', zIndex:$(this).children('a').css('z-index')-1}));
			});
			
			$('a',this).hover(
				function(){
					$(this).parent().children('div').fadeIn(conf.speed);
					$(this).css({backgroundPosition:'center '+ -$(this).height()+'px'});
				},
				function(){
					$(this).parent().children('div').fadeOut(conf.speed);
					$(this).css({backgroundPosition:'center 0px'});
				}
			);

		});
		return false;
	};

})(jQuery);

