$(document).ready(function() {
	$('#tabcontrol > ul').tabs({selected: 1 }); //0 selects the first tab. etc.
	$('#tabcontrolsub > ul').tabs({ selected: 0 }); //0 selects the first tab, 1 the second, and 2 the third. -1 means none
	$('#sellinger').addClass('ui-tabs-hide').css('display','none');
	//$('li.ui-tabs-selected',$('ul.tabnav')).removeClass('ui-tabs-selected'); //will remove the graduate on state
	$('li.ui-tabs-selected',$('ul.tabnavsub')).removeClass('ui-tabs-selected');
});

