// Main navigation - by L.B. 2006

var links = new Array();
links[0] = 'Home';
links[1] = 'General Fabrications';
links[2] = 'Gates & Railings';
links[3] = 'Gallery';
links[4] = 'Contact Us';

var page = new Array();
page[0] = 'index.htm';
page[1] = 'general.htm';
page[2] = 'gatesrailings.htm';
page[3] = 'gallery.htm';
page[4] = 'contact.htm';

function linkOver(l) {
 if (l != cp) {	document.getElementById('nav' + l).style.borderBottom = '1px solid #88B0FF';
		document.getElementById('nav' + l).style.marginBottom = '6px'; }
}

function linkOut(l) {
 if (l != cp) {	document.getElementById('nav' + l).style.border = 'none';
		document.getElementById('nav' + l).style.marginBottom = '7px'; }
}

function writetop() {
document.write('<div class="type">General Mild & Stainless Steel Fabricators <img src="div.gif" border="0" width="4" height="4" hspace="5" alt="" align="absmiddle"> Welding Specialists<\/div><div class="tel">Tel/Fax 01206 794144<br>Site Mobile 07780 612778<\/div>');
}

function writenav() {
 for (i=0; i < links.length; i++){ 
  if (i == cp) { c = 'menuOn'; } else { c = 'menuOff'; }
  document.write('<div id="nav'+i+'" class='+c+'><a onMouseOver=javascript:linkOver('+i+') onMouseOut=javascript:linkOut('+i+') href='+page[i]+'>'+links[i]+'<\/a><\/div>');
 }
}

function writefooter() {
document.write('<div style="float:left;">©2006 site by <a href="http://www.lpixel.com" target="_blank">Lpixel<\/a><\/div>');
document.write('<div style="float:right;"><a href="http://validator.w3.org/check?uri=referer" target="_blank">w3c valid html 4.01<\/a><\/div>');
}
