$(document).ready(function(){
	
	$('ul.tab > li > a').click(function(){
		$(this).parent().addClass('active').siblings().removeClass('active');
		$('.tab_content').children().hide().eq($('ul.tab > li').index($(this).parent())).show();
		window.location.hash = $(this).attr('href');
		return false;
	});
	
	if(window.location.hash)
	{
		active_tab = $('ul.tab > li > a:[href='+window.location.hash+']');
		active_tab.parent().addClass('active').siblings().removeClass('active');
		$('.tab_content').children().hide().eq($('ul.tab > li').index(active_tab.parent())).show();
	}
	
});