function Startup() {
	$('#special').fadeIn(1000);
	setTimeout("$('#special').fadeOut(1000);$('#redArrow').fadeIn(500)", 3000);
}

function AdjustPage() {
// Variables
var PageColor = "#65c3ca";
var PageName = "About Us";
// Set the mainCellHeight
	spaceTop = 100; spaceBottom = 10; 
	mainCellHeight = document.body.clientHeight - (spaceTop + spaceBottom);
	document.getElementById("mainCell").style.height = mainCellHeight;
}
function refresh() { 
	location.href = location.href 
}
function LCode() {
	S = String.fromCharCode(60,97,32,104,114,101,102,61,34,109,97,105,108,116,111);
	S = S + String.fromCharCode(58,76,105,110,100,97,64,76,105,110,100,97,115,76,101);
	S = S + String.fromCharCode(110,115,101,115,46,99,111,109,34,62,76,105,110,100,97);
	S = S + String.fromCharCode(64,76,105,110,100,97,115,76,101,110,115,101,115,46,99);
	S = S + String.fromCharCode(111,109,60,47,97,62);
	return S;
}
function StartMainTable() {
	document.write('<div class="Phone">Call 440-570-3983 or email ' + LCode() + '</div>');
	document.write('<table width="100%" id="table3"><tr><td class="spaceTop" colspan="2"><img src="../New_Images/0.gif" height="99"></td></tr>');
	document.write('<tr><td class="spaceLeft"><img src="../New_Images/0.gif" width="169"></td><td id="mainCell" valign="top" height="180">');
	AdjustPage();
}
function EndMainTable() {
	document.write('</table>');
}
function StartSideMenu(x) {
	document.write('<img id="PagePic" src="PagePic.jpg" alt="' + PageName + '" class="PagePic" style="border: 1px solid ' + PageColor + '">');
	document.write('<div id="HLine" class="HLine" style="background-color: ' + PageColor + '"></div>');
	document.write('<div id="VLine" class="VLine" style="background-color: ' + PageColor + '"></div>');
	if (x != 2) document.write('<div align="center" id="SideMenu" class="SideMenu" style="border: 1px solid ' + PageColor + '; padding-bottom:12">');
}
function EndSideMenu() {
	document.write('</div>');
}
function bg1(number) { 
	document.getElementById('item' + number).style.border = '2px solid ' + PageColor;
}
function bg2(number) { 
	document.getElementById('item' + number).style.border = '2px solid black';
}
