// JavaScript Document
function change(cell)
{	
	var bg='#c2b080';
	var bgW='#333333';
	var bgB='#FFFFFF';

	var sb = "";
	if (cell == "cellA")
	{
		document.getElementById('cellA').bgColor=bg; 
		document.getElementById('cellB').bgColor=bgW; 
		document.getElementById('cellC').bgColor=bgW; 
		document.getElementById('cellD').bgColor=bgW; 
		document.getElementById('cellE').bgColor=bgW; 
		document.getElementById('cellF').bgColor=bgW; 

		document.getElementById('cellAA').bgColor=bg; 
		document.getElementById('cellBB').bgColor=bgB; 
		document.getElementById('cellCC').bgColor=bgB; 
		document.getElementById('cellDD').bgColor=bgB; 
		document.getElementById('cellEE').bgColor=bgB; 
		document.getElementById('cellFF').bgColor=bgB; 

	}
	if (cell == "cellB")
	{
		sb = " <a class=subMenu href=/garagedoors/gDoors.html>Garage Doors</a> | <a class=subMenu href=/fireplaces/fireplaces.html>Fireplaces</a> | <a class=subMenu href=/mirrors/mirrors.html>Mirrors</a> |&nbsp<a class=subMenu href=/bath/showerdoors.html>Shower Doors</a> | <a class=subMenu href=/doors/doorlocks.html>Door Locks<a> |&nbsp<a class=subMenu href=/shutters.html>Shutters</a> | <a class=subMenu href=/gutters.html>Gutters</a> | <a class=subMenu href=/shelving/shelves.html>Shelving</a> | <a class=subMenu href=/bath/bathhardware.html>Bath Hardware</a>";
		document.getElementById('cellA').bgColor=bgW; 
		document.getElementById('cellB').bgColor=bg; 
		document.getElementById('cellC').bgColor=bgW; 
		document.getElementById('cellD').bgColor=bgW; 
		document.getElementById('cellE').bgColor=bgW; 
		document.getElementById('cellF').bgColor=bgW; 
		
		document.getElementById('cellAA').bgColor=bgB; 
		document.getElementById('cellBB').bgColor=bg; 
		document.getElementById('cellCC').bgColor=bgB; 
		document.getElementById('cellDD').bgColor=bgB; 
		document.getElementById('cellEE').bgColor=bgB; 
		document.getElementById('cellFF').bgColor=bgB; 
	}
	if (cell == "cellC")
	{	
		document.getElementById('cellA').bgColor=bgW; 
		document.getElementById('cellB').bgColor=bgW; 
		document.getElementById('cellC').bgColor=bg; 
		document.getElementById('cellD').bgColor=bgW; 
		document.getElementById('cellE').bgColor=bgW; 
		document.getElementById('cellF').bgColor=bgW; 
		
		document.getElementById('cellAA').bgColor=bgB; 
		document.getElementById('cellBB').bgColor=bgB; 
		document.getElementById('cellCC').bgColor=bg; 
		document.getElementById('cellDD').bgColor=bgB; 
		document.getElementById('cellEE').bgColor=bgB; 
		document.getElementById('cellFF').bgColor=bgB; 
	}
	if (cell == "cellD")
	{
		document.getElementById('cellA').bgColor=bgW; 
		document.getElementById('cellB').bgColor=bgW; 
		document.getElementById('cellC').bgColor=bgW; 
		document.getElementById('cellD').bgColor=bg; 
		document.getElementById('cellE').bgColor=bgW; 
		document.getElementById('cellF').bgColor=bgW; 
		
		document.getElementById('cellAA').bgColor=bgB; 
		document.getElementById('cellBB').bgColor=bgB; 
		document.getElementById('cellCC').bgColor=bgB; 
		document.getElementById('cellDD').bgColor=bg; 
		document.getElementById('cellEE').bgColor=bgB; 
		document.getElementById('cellFF').bgColor=bgB; 
	}
	if (cell == "cellE")
	{
		document.getElementById('cellA').bgColor=bgW; 
		document.getElementById('cellB').bgColor=bgW; 
		document.getElementById('cellC').bgColor=bgW; 
		document.getElementById('cellD').bgColor=bgW; 
		document.getElementById('cellE').bgColor=bg; 
		document.getElementById('cellF').bgColor=bgW; 
		
		document.getElementById('cellAA').bgColor=bgB; 
		document.getElementById('cellBB').bgColor=bgB; 
		document.getElementById('cellCC').bgColor=bgB; 
		document.getElementById('cellDD').bgColor=bgB; 
		document.getElementById('cellEE').bgColor=bg; 
		document.getElementById('cellFF').bgColor=bgB; 
	}
	if (cell == "cellF")
	{
		document.getElementById('cellA').bgColor=bgW; 
		document.getElementById('cellB').bgColor=bgW; 
		document.getElementById('cellC').bgColor=bgW; 
		document.getElementById('cellD').bgColor=bgW; 
		document.getElementById('cellE').bgColor=bgW; 
		document.getElementById('cellF').bgColor=bg; 
		document.getElementById('cellAA').bgColor=bgB; 
		document.getElementById('cellBB').bgColor=bgB; 
		document.getElementById('cellCC').bgColor=bgB; 
		document.getElementById('cellDD').bgColor=bgB; 
		document.getElementById('cellEE').bgColor=bgB; 
		document.getElementById('cellFF').bgColor=bg; 
	}
	document.getElementById('subMenu').innerHTML=sb; 
}

