// JavaScript Document

	function goHome()
	{
		var homeTab	= document.getElementById( 'home_tab' );
		var label	= homeTab.getElementsByTagName( "*" )[ 0 ].className;
		if ( label.search( "tab_text_selected" ) < 0 )
			prepAndGo( 'home' );
	} // end goHome()
	
	function doHomeTasks()
	{
		setTimeout( "changeMainPanel();", 1000 );
		centerVertical( document.getElementById( 'home_content' ) );		
	} // end doHomeTasks()
	
	function changeMainPanel()
	{
		document.getElementById( 'main_panel' ).style.backgroundImage 	= "url( 'public/images/main_panel_used.png' )";
		document.getElementById( 'main_panel' ).style.backgroundRepeat	= "no-repeat";			
	} // end changeMainPanel()
	
