//2009-01-19
(function($){

$.fn.extend({
	infoBox : function(options){
		var settings = $.extend({scroll:false},options);
		if(settings.scroll) $(".infoBoxList a", this).click(function(){
			var $this = $(this);
			$this.parents('.infoBoxList').find('a').removeClass('selected');
			$this.addClass('selected');
			$this.parents('.infoBox').find("div[item=" + $(this).text() + "]").each(function(){
				$(this).parents('.infoBoxDisplay').scrollTo(this, 1000,{
					margin:true
				});
			});
			return false;
		});
		else $(".infoBoxList li a", this).click(function(){
			var $this = $(this);
			$this.parents('.infoBoxList').find('a').removeClass('selected');
			$this.addClass('selected');
			$this.parents('.infoBox').find('.infoBoxDisplay div[item]').each(function(){
				if($(this).css('display')!='none')
					$(this).fadeOut(400,function(){
						$("div[item=" + $(this).parents('.infoBox').find("a.selected").text() + "]", this.parentNode).fadeIn(400);
					});
			});
			return false;
		});
	}
});

})(jQuery);