function initializeTabs(tabId) {
	var tabs = jQuery("#" + tabId);
	
	tabs.tabs({selected: 0});
	tabs.fadeIn("slow", function() {
		jQuery("#" + tabId + "Loading").fadeOut("slow");
	});
}

