jQuery(function($){
	var box = $('div#box');
	//var tabPanel = $('div.tabPanel',box);
	var test = $('ul li',box);
	
	var tabSet = function(target){
		//var targetTabId = $('a',target).attr('#');
		//var targetID = location.href="#map"
		test.removeClass('active');
		
		//tabPanel.hide();
		$(target).addClass('active');
		
		//$(targetID).show();
	}
	test.click(function(){
		//location.href="#home";					
		tabSet(this);
		return false;
		if($('li.blog',box)){
			this.location.href="http://crushmaking.com"
		};
	}).each(function(){
		if($(this).hasClass('active')){
			tabSet(this);
		}
	});
	
	//if(tabPanel.filter(':visible').length!=1){
		//test.eq(0).addClass('active');
		//tabPanel.not(':first').hide();
	//}
});
