$(document).ready(function(){
	var hash_val = window.location.hash.substr(5);
	var active_tab;
	$('#tert-tabs ul li a').each(function(intIndex){
		var tab_id = $(this).attr('href').substr(1);
		if (tab_id == hash_val) { active_tab = intIndex}
		$(this).click(function(){
			window.location.hash = 'tab-' + tab_id;
		});
	});
	if (active_tab == undefined) {
		$('#tert-tabs').tabs();
	} else {
		$('#tert-tabs').tabs({selected:active_tab});
	}
});
