   var tabWidth = 40;
        
        function expand() {
            if (document.title== "Overwrought | welcome")
				{	
				if (tabWidth < 100) 
					{
						document.getElementById("mainTable").style.width = tabWidth +"%"
						tabWidth ++
					setTimeout("expand()",20)
					}
				}
			else {
				document.getElementById("mainTable").style.width = "100%"
				}
        }
	



