nav = new Menus(
new Menu('company-menu'),
new Menu('products-menu'),
new Menu('applications-menu'),
new Menu('iso-menu'),
new Menu('policies-menu'));
nav.name = 'nav';


// Declare an array for storing news items to display on the home page.
var newsItems = new Array();
	
newsItems[0] = '<div class="home-news-image"><img src="/i/news/skidaway.gif" alt="Skidaway" /></div><div><a href="/news.html#062006">Skidaway Institute of Oceanography to test PRP anti-corrosion products on land and on sea</a></div>';
newsItems[1] = '<div class="home-news-image"><img src="/i/news/Holland.gif" alt="Holland" /></div><div><a href="/news.html#082005">The Holland Group announces Landing Gear enhanced with Black Armour&trade;, an anti-corrosive coating supplied by PRP Industries</a></div>';
newsItems[2] = '<div class="home-news-image"><img src="/i/news/general-dynamics.gif" alt="General Dynamics" /></div><div><a href="/news.html#052005">PRP receives additional order for components to be coated for new generation of test vehicles</a></div>';
newsItems[3] = '<div class="home-news-image"><img src="/i/news/walmart.gif" alt="Walmart" /></div><div><a href="/news.html#092004">Wal-Mart to use PRP Industries\' Corsol&trade; Advanced Metal Treatment when refurbishing trailers</a></div>';

function randomNews() {
var a = Math.round(Math.random() * 3);
return newsItems[a];
}