jQuery(function(){	//dom ready
	var make_tabs = jQuery("ul.tabs").tabs("div.panes > div",{effect: 'slide', api: true});//tabs from "jquery tools:" http://flowplayer.org/tools/tabs/index.html
	
	jQuery('.tabclose').click(function(){
		make_tabs.click(0);//activate first tab, #message_bar, which is the tab that makes it appear as if the tabs are all closed
	});//end tabsclose.click
	
});//end dom ready function
