// Side Menu Buttons

document.write('<h4>Directory</h4>');
document.write('<table class="side1">');

// Define Menu Items

var menus_name = new Array("Banners","Contact","Games","Services","Software","WebApps","Welcome");
var menus_link = new Array("./logos.htm","./email.htm","./games.htm","./serve.htm","./linux.htm","./cloud.htm","./index.htm");

// Display Menu Items

for ( items=0; items < menus_name.length; items++ )

{

document.write('<tr style="background-image:url(./image/butt1.png); background-repeat:no-repeat;">');
document.write('<td style="width:100%; padding:8px; text-align:center;">');
document.write('<b><a style="color:black; text-decoration:none;" href=" ' + menus_link[items] + ' ">' + menus_name[items] + '</a></b>');
document.write('</td>');
document.write('</tr>');

}

document.write('</table>');

