


function mainmenu(){

	document.write('<table cellpadding=0 cellspacing=0 border=0>');
	document.write('<tr><Td><IMG SRC="images/menu_01.gif" BORDER="0" ALT=""></td></tr>');
	document.write('<tr><Td><a href="index.html"	 ><IMG SRC="images/menu_02_b.gif" onmouseover="this.src=\'images/menu_02_o.gif\';" onmouseout="this.src=\'images/menu_02_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><a href="painting.html"	 ><IMG SRC="images/menu_03_b.gif" onmouseover="this.src=\'images/menu_03_o.gif\';" onmouseout="this.src=\'images/menu_03_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><a href="repair.html"	 ><IMG SRC="images/menu_04_b.gif" onmouseover="this.src=\'images/menu_04_o.gif\';" onmouseout="this.src=\'images/menu_04_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><a href="projects.html"	 ><IMG SRC="images/menu_05_b.gif" onmouseover="this.src=\'images/menu_05_o.gif\';" onmouseout="this.src=\'images/menu_05_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><a href="references.html"><IMG SRC="images/menu_06_b.gif" onmouseover="this.src=\'images/menu_06_o.gif\';" onmouseout="this.src=\'images/menu_06_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><a href="contact.html"	 ><IMG SRC="images/menu_07_b.gif" onmouseover="this.src=\'images/menu_07_o.gif\';" onmouseout="this.src=\'images/menu_07_b.gif\';" BORDER="0" ALT=""></a></td></tr>');
	document.write('<tr><Td><IMG SRC="images/menu_08.gif" BORDER="0" ALT=""></td></tr>');
	document.write('</table>');

}


//###########################################################################################

function toggleList(e){
	element = document.getElementById(e).style;
	element.display == 'none' ? element.display = 'block' : 
	element.display = 'none';
}



//###########################################################################################
function viewelement(e){
	element = document.getElementById(e).style;
	element.display = 'block';
}
//###########################################################################################
function hideelement(e){
	element = document.getElementById(e).style;
	element.display = 'none';
}
