document.write('        <table class=sectionmenu>');
document.write('			<tr><td><a href="/WestPack/overview.html" class=sectionentry>Overview</a></td></tr>');
document.write('			<tr><td><a href="/WestPack/features.html" class=sectionentry>Features</a></td></tr>');
document.write('			<tr><td><a href="/WestPack/advantages.html" class=sectionentry>Advantages</a></td></tr>');
document.write('			<tr><td><a href="/WestPack/petrochemical.html" class=sectionentry>Oil &amp; Gas</a></td></tr>');
document.write('			<tr><td><a href="/WestPack/contact.html" class=sectionentry>Contact</a></td></tr>');
document.write('        </table>');


var i;
for (i = 0; i<document.links.length; i++)
{
	if ((document.links[i].href.toLowerCase() == document.URL.toLowerCase())
	&& (document.links[i].className == 'sectionentry'))
		document.links[i].className = 'currentsectionentry';
}