$(function (){
	var tabContainers = $('div#tab_box > div');
	tabContainers.hide().filter(':first').show();
	var hash=location.hash;
	
	$('div#tab_box ul#tab_list a').click(function () {
		tabContainers.hide();	
		tabContainers.filter(this.hash + '_container').show();
		$('div#tab_box ul#tab_list a').removeClass('act');
		$(this).addClass('act');
	});
	
	if (hash){
		$(hash + '_container').show();
		$('div#tab_box ul#tab_list a[href="' + hash + '"]').click();
	} else {
		tabContainers.filter(':first').show();
		$('div#tab_box ul#tab_list a').filter(':first').click();
	}
});
