// JavaScript Document
function checkNav()
{	
	var LKCLASSON = "";
	var theURLPath = window.location.pathname.toLowerCase();
	if(typeof indexPage !== "undefined") LKCLASSON="philosphy";
	else if( theURLPath.indexOf("household") !== -1) LKCLASSON="household";
	else if( theURLPath.indexOf("corporate") !== -1) LKCLASSON="corporate";
	else if( theURLPath.indexOf("specialized") !== -1) LKCLASSON="specialized";
	else if( theURLPath.indexOf("international") !== -1) LKCLASSON="international";
	else if( theURLPath.indexOf("/air") !== -1) LKCLASSON="air";
	else if( theURLPath.indexOf("storage") !== -1) LKCLASSON="storage";
	else if( theURLPath.indexOf("ocean") !== -1) LKCLASSON="ocean";
	else if( theURLPath.indexOf("office") !== -1) LKCLASSON="office";
	else if( theURLPath.indexOf("exhibit") !== -1) LKCLASSON="exhibit";
	
	if (LKCLASSON != "")
	{
		var lkobj = document.getElementById(LKCLASSON);
		if (lkobj != null) lkobj.className="onit";
	}
	
}

function writeIndexFlash()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="706" height="312" title="Certified Transportation">');
	document.write('<param name="movie" value="/images/new/home-animation.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="/images/new/home-animation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="706" height="312"></embed>');
	document.write('</object>');
}
function writeSubFlash()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="706" height="175" title="Certified Transportation">');
	document.write('<param name="movie" value="/images/new/sub-animation.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="/images/new/sub-animation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="706" height="175"></embed>');
	document.write('</object>');
}
function highlightTable(whichone)
{
	var a = document.getElementById(whichone);
	var b = a.getElementsByTagName("tr");
	for (var i=0; i<b.length; i++)
	{
		if (i%2===1) b[i].className = "r";
	}		
}