I make a wild assumption that you really have layout as:
IF that assumption is correct, you simply use the ID to select the "tab"
$('#tabone').css("display","none");
EDIT: select the tab on your layout:
var index = $('.tabs ul').index($('#tabone'));
$('.tabs ul').tabs('select', index);