$(document).ready(function() {
	$('#tabcontrol > ul').tabs({selected: 0 }); //0 selects the first tab. etc.
	/*$('ul.tabnav', $('#tabcontrol')).tabs({
   		select: function(event, ui) {
        	var url = $.data(ui.tab, 'load.tabs');
			if( url ) {
				location.href = url;
				return false;
			}
			return true;
    	}
	});*/
	
	$('#tabcontrolsub > ul').tabs({ selected: 0 }); //0 selects the first tab, 1 the second, and 2 the third. -1 means none
	
});

