var oldoffice = {
	
	apllyTab : function(options) {
		var defaults = {
			active : null
		};
		var settings = $.extend( {}, defaults, options);
		
		$(".promoMainPic:not(:eq(0))").hide();
		
		$("a.tab").click(function () {
			var content_show = $(this).attr("href");
			
			$(".active").removeClass("active");
			$(this).addClass("active");
			
			$(".promoMainPic").hide();
			$(content_show).fadeIn(300);
			return false;
		});
	}
	
};

$(function() {
	oldoffice.apllyTab({ active : "#promoContBox01" });
});