// JavaScript Document
document.write("<link rel='stylesheet' href='menu_style.css'></link>");
document.write("<SCRIPT language=javascript src='transmenuC.js'></SCRIPT>");
document.write("<SCRIPT language=javascript src='fade.js'></SCRIPT>");

function init()
{
	if (TransMenu.isSupported())
	{
		TransMenu.initialize();
	}
}


function write_menu()
{
	document.write("<TABLE height=35 cellSpacing=0 cellPadding=0 border=0><TR><TD colSpan=3 height=14><TABLE height=26 cellSpacing=0 cellPadding=0 width='98%' border=0><TR>");
	document.write("<TD id='home' align='center' width='109' height='35' background='images/image_08.jpg'><A class=menu href='index.html'><font color='#FFFFFF' face='century gothic' style='font-weight: 700; text-decoration: none' size='3'>Home</font></A></TD>");
	document.write("<TD id='aboutus' align='center' width='107' height='35' background='images/image_10.jpg'><A class=menu href='aboutus.html'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700; text-decoration: none' size='3'>About Us</font></A></TD>");
	document.write("<TD id='products' align='center' width='107' height='35' background='images/image_10.jpg'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700; text-decoration: none' size='3'>Products</font></TD>");
	document.write("<TD id='export' align='center' width='107' height='35' background='images/image_10.jpg'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700; text-decoration: none' size='3'>Export</font></TD>");
	document.write("<TD id='industrial' align='center' width='107' height='35' background='images/image_10.jpg'><A class=menu href='industrial.html'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700; text-decoration: none' size='3'>Industrial</font></A></TD>");
	document.write("<TD id='localmarket' align='center' width='131' height='35' background='images/image_13.jpg'><A class=menu href='localmarket.html'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700' size='3'>Local Market</font></A></TD>");
	document.write("<TD id='contactus' align='center' width='131' height='35' background='images/image_14.jpg'><A class=menu href='contactus.html'><font color='#FFFFFF' face='century gothic'' style='font-weight: 700; text-decoration: none' size='3'>Contact Us</font></A></TD>");
	document.write("</TR></TABLE></TD></TR></TABLE>");
	
	
	if (TransMenu.isSupported())
	{
			var ms = new TransMenuSet(TransMenu.direction.right, 1, 0, TransMenu.reference.bottomLeft);
			
			var menu1 = ms.addMenu(document.getElementById('products'));
			menu1.addItem('Cereals', '/cereals.html');
			menu1.addItem('Bars', '/bars.html');
			menu1.addItem('Snacks', '/snacks.html');
			menu1.addItem('Industrial', '/industrial.html');
			
			var menu4 = ms.addMenu(document.getElementById('export'));
			menu4.addItem('Exhibitions', '/exhibitions.html');
			menu4.addItem('Markets', '/markets.html');
			menu4.addItem('Private Labels', '/private-labels.html');
			
			TransMenu.renderAll();
	}
}
