$(document).ready(function(){
	$('.tabs-url .open-tab').click(function(){
		var close_tab = $(this).parents('.tab').attr('id');
		var open_tab = $(this).attr('rel');
		var time = 400;
		$('#'+close_tab).hide(time);
		$('#'+open_tab).show(time);  
		$('#'+open_tab+' .tabback').attr('rel', close_tab);
		var timeout = setTimeout('location.href = "#'+open_tab+'";', time);
	});
	$('.tabback').click(function(){
		var close_tab = $(this).parents('.tab').attr('id');
		var open_tab = $(this).attr('rel');
		var time = 200;
		$('#'+close_tab).hide(time);
		$('#'+open_tab).show(time);  
		var timeout = setTimeout('location.href = "#'+open_tab+'";', time);
	});
});
