/***********************************************
 * Display awards...
 ***********************************************/
function getAwardText()
{ 
	var text;

	text = '<div class="awards">';
	text += '<b>';
	text += 'IFW Award Finalist 2010.<br />';
	text += '&quot;Highly Commended&quot;<br />';
	text += '<br />';
	text += 'BIFA Award Finalist &quot;European Services&quot; 2010.<br />';
	text += '<br />';
	text += 'UKWA Awards 2008 - Winners of &quot;Warehouse Team Of The Year&quot;.<br />';
	text += '<br />';
	text += 'UKWA Awards 2009 - Finalist in 2 categories &quot;Team of the year&quot; &amp; &quot;Warehouse Person of the Year&quot;.<br />';
	text += '<br />';
	text += 'Winners of "MAN Everywoman Transport Team of the year."</b>';
	text += '</div>';

	return text;
}

/***********************************************
 * Display Menu...
 ***********************************************/
function getMenu()
{
	var text;

	text = '<ul>'
	text += '<li><a href="index.html">Home</a></li>';
	text += '<li><a href="european-services.html" title="European Services">European Services</a></li>';
	text += '<li><a href="ocean-freight.html" title="Ocean Freight">Ocean Freight</a></li>';
	text += '<li><a href="air-freight.html" title="Air Freight">Air Freight</a></li>';
	text += '<li><a href="storage-distribution.html" title="Warehousing / Pick &amp; Pack">Warehousing / Pick &amp; Pack</a></li>' ;
	text += '<li><a href="domestic-transport.html" title="UK Distribution">UK Distribution</a></li>';
	text += '<li><a href="service-index.html" title="Service Index">Service Index</a></li>';
	text += '<li><a href="on-line.html" title="Simarco On Line">Simarco On Line</a></li>';
	text += '<li><a href="news.html" title="Simarco News...">Simarco News...</a></li>';
	text += '<li><a href="surcharges.html" title="Surcharges">International Surcharges</a></li>';
	text += '<li><a href="http://87.85.146.83/DomesticSurcharges" title="UK Surcharges">UK Domestic Surcharges</a></li>';
	text += '</ul>';
	text += '<p>';
	text +=	'<img src="./media/image/EQA-QMS.jpg" alt="European Quality Assurance" style="height: 101px; width: 159px">';
	text += '<img src="./media/image/EQA-EMS.jpg" alt="European Quality Assurance" style="height: 101px; width: 159px">';
	text += '</p>';

	return text;
}
