(function($) {
	$.fn.InfoPage = function(settings) {
		var config = {
			
		}
		if(settings) $.extend(config, settings);
		this.each(function(){
			var $this = $(this);
			var thisTarget = $(this).attr('id');
			$('#nav li a').click(function() {
				
				var thisNumber = $(this).parent('li').index();
				if( $(this).attr('href') == '#'+thisTarget ) {
					$this.stop().fadeTo('fast', 1);
				} else{
					$this.stop().fadeTo('fast', 0);
				}
			});
			
			
			
			
		});
		return this;
	};
})(jQuery);
