

function gohere(whereto)
{

window.location=whereto
}


function coloron()
{

}

function coloroff()
{

}


function insert_buttons ()
{

document.write('<img src="/graphics/lines/spot.gif" width="1" height="2" /><br/><img class="clickme" name ="fc" src="../graphics/buttons/fc_off.jpg" width="194" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/flooring\')"/><img class="clickme" name="curt" src="../graphics/buttons/curt_off.jpg" width="114" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/curtains\')"/><img class="clickme" name="light" src="../graphics/buttons/light_off.jpg" width="216" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/lights\')"/><img class="clickme" name ="comm" src="../graphics/buttons/comm_off.jpg" width="194" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/commercials\')"/><img class="clickme" name="brochure" src="/graphics/buttons/brochure_off.jpg" width="128" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/brochures\')"/>')

}

function insert_hbuttons ()
{

document.write('<img src="/graphics/lines/spot.gif" width="1" height="2" /><br/><img class="clickme" name ="fc" src="/graphics/buttons/fc_off.jpg" width="194" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/flooring\')"/><img class="clickme" name ="sh" src="/graphics/buttons/sh_off.jpg" width="128" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/showhomes\')"/><img class="clickme" name="curt" src="/graphics/buttons/curt_off.jpg" width="114" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/curtains\')"/><img class="clickme" name="light" src="/graphics/buttons/light_off.jpg" width="216" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/lights\')"/><img class="clickme" name ="comm" src="/graphics/buttons/comm_off.jpg" width="194" height="20" onmouseover="flip(this,\'_on\')"  onmouseout="flip(this,\'_off\')" onclick="gohere(\'/commercials\')"/>')

}




function side_menu(page_index)

{
var pages = new Array();
var link_text = new Array();

pages[0] = '../company.shtml'
pages[1] = '../products'
pages[2] = '../showhomes'
pages[3] = '../locations.shtml'
pages[4] = '../safety'
pages[5] = '../brochures'
pages[6] = '../careers.shtml'
pages[7] = '../contact.shtml'
pages[8] = '../offers/'
link_text [0] ='The Company'
link_text [1] ='Product Range'
link_text [2] ='Showhome Gallery'
link_text [3] ='Where we operate'
link_text [4] ='Health and Safety'
link_text [5] ='Download Brochure'
link_text [6] ='Careers'
link_text [7] ='Contact Us'
link_text [8] ='Special Offers'

var mnu = 0


document.write('<div class ="menulink" >')
for (mnu=0;mnu<pages.length;mnu++)
{
if (page_index != mnu)
	{

		
				document.write('<p class="clickme" onclick="gohere(\''+pages[mnu]+'\')">'+link_text[mnu]+'</p>')
			
	}
	else
	{
		document.write('<p class="currentmenulink" >'+link_text[mnu]+'</p>')
	}



}

document.write('</div>')



}