function initTab(){
	var tab_cookie_id = parseInt($.cookie(location.pathname+"the_tab_cookie")) || 0;   
	$("#tabs").tabs({     
		selected: tab_cookie_id,     
		show:     function(ui) { 
			var url = location.host;
			var selected = $( "#tabs" ).tabs( "option", "selected" );      
			$.cookie(location.pathname+"the_tab_cookie", selected);     
			}   
	}); 
}
