// Check if using Internet Explorer and store as "isInternetExplorer" variable
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

// Check for Flash Player Version
// Major version of Flash required
var requiredMajorVersion = 7;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;
// Version check based upon the values entered above
var hasRequestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Handle all the FSCommand messages in a Flash movie.
function main_menu_object_DoFSCommand(command, newMenuHeight) {
	var main_menu_objectObj = isInternetExplorer ? document.all.main_menu_object : document.main_menu_object;
	if (command == "updateMenuHeight") {
		document.main_menu_object.height=newMenuHeight;
	}
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub main_menu_object_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call main_menu_object_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}

function mOver_about_ci(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#475FB8';}
function mOut_about_ci(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#324081';}

function mOver_general_info(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#A020A0';}
function mOut_general_info(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#800080';}

function mOver_products_and_services(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#3298D6';}
function mOut_products_and_services(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#2685BD';}

function mOver_your_market(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#D24242';}
function mOut_your_market(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#B22222';}

function mOver_highlights(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#FFAB20';}
function mOut_highlights(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#E88B00';}

function mOver_contact_us(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#8BAE43';}
function mOut_contact_us(subMenuCell){document.getElementById(subMenuCell).style.backgroundColor='#6B8E23';}

function newMenuImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeMenuImages() {
	if (document.images && (preloadMenuFlag == true)) {
		for (var i=0; i<changeMenuImages.arguments.length; i+=2) {
			document[changeMenuImages.arguments[i]].src = changeMenuImages.arguments[i+1];
		}
	}
}

var preloadMenuFlag = false;
function preloadMenuImages() {
	if (document.images) {
		about_ci_over = newMenuImage("/images/_site2/header_footer/js_menu/about_ci_over.gif");
		general_info_over = newMenuImage("/images/_site2/header_footer/js_menu/general_info_over.gif");
		products_and_services_over = newMenuImage("/images/_site2/header_footer/js_menu/products_and_services_over.gif");
		your_market_over = newMenuImage("/images/_site2/header_footer/js_menu/your_market_over.gif");
		highlights_over = newMenuImage("/images/_site2/header_footer/js_menu/highlights_over.gif");
		contact_us_over = newMenuImage("/images/_site2/header_footer/js_menu/contact_us_over.gif");
		preloadMenuFlag = true;
	}
}

var whichMenuArray = new Array("about_ci","general_info","products_and_services","your_market","highlights","contact_us");

function switchMenu(whichMenu) {
	hideAllSubMenus();
	subMenu = document.getElementById(whichMenu).style;
	subMenu.visibility = 'visible';
}
function hideAllSubMenus() {
	for (var i = 0; i < whichMenuArray.length; i++) {
		whichOfAllMenus = eval("whichMenuArray[i] + '_menu'");
		subMenu = document.getElementById(whichOfAllMenus).style;
		subMenu.visibility = 'hidden';
		whichMenuImgName = eval("whichMenuArray[i] + '_img'");
		whichMenuImg = eval("'/images/_site2/header_footer/js_menu/' + whichMenuArray[i] + '.gif'");
		changeMenuImages(whichMenuImgName, whichMenuImg);
	}
}

function startMenuHideTimer() {
	menuHideDelay = 1000;
	menuHideTimer = setTimeout('hideAllSubMenus()',menuHideDelay);
}

function stopMenuHideTimer(){clearTimeout(menuHideTimer);}

function embedMainMenu()
{
	// If browser is Internet Explorer, load Flash menu. Otherwise, load java-script menu
	if (isInternetExplorer && hasRequestedVersion) {
		document.write('<object id="main_menu_object" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="760" height="42">\n');
		document.write('<param name="movie" value="/flash/ci_menu_drop_down_v7.swf">\n');
		document.write('<param name="quality" value="high">\n');
		document.write('<param name="menu" value="false">\n');
		document.write('<param name="bgcolor" value="#FFFFFF">\n');
		document.write('<param name="scale" value="noscale">\n');
		document.write('<param name="salign" value="lt">\n');
		document.write('<param name="wmode" value="transparent">\n');
		document.write('<param name="allowScriptAccess" value="always">\n');
		document.write('<param name="base" value="/">\n');
		document.write('<embed name="main_menu_embed" src="/flash/ci_menu_drop_down_v7.swf" quality="high" salign="lt" scale="noscale" wmode="transparent" allowScriptAccess="always" base="/" menu="false" bgcolor="#FFFFFF" width="760" height="42" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer"></embed>\n');
		document.write('</object>\n');
	} else {
		preloadMenuImages();
		startMenuHideTimer();
		document.write('<table cellspacing="0" cellpadding="0" width="760" border="0">\n');
			document.write('<tr>\n');
				document.write('<td class="menuRow" height="42">\n');
					document.write('<div id="mainMenuDiv" onMouseOver="stopMenuHideTimer();" onMouseOut="startMenuHideTimer();" style="background-color:white;">\n');
						document.write('<table id="menuTable" height="20" cellspacing="0" cellpadding="0" width="760" border="0">\n');
							document.write('<tr>\n');
								document.write('<td width="17" height="20"><img src="/images/_site2/spacer.gif" width="17" height="20"></td>\n');
								document.write('<td><a href="/_content/about_ci/" onMouseOver="switchMenu(\'about_ci_menu\'); changeMenuImages(\'about_ci_img\', \'/images/_site2/header_footer/js_menu/about_ci_over.gif\'); return true;" onMouseDown="changeMenuImages(\'about_ci_img\', \'/images/_site2/header_footer/js_menu/about_ci_over.gif\'); return true;" onMouseUp="changeMenuImages(\'about_ci_img\', \'/images/_site2/header_footer/js_menu/about_ci_over.gif\'); return true;"><img name="about_ci_img" src="/images/_site2/header_footer/js_menu/about_ci.gif" width="61" height="20" border="0"></a></td>\n');
								document.write('<td width="34" height="20"><img src="/images/_site2/spacer.gif" width="34" height="20"></td>\n');
								document.write('<td><a href="/_content/general_info/" onMouseOver="switchMenu(\'general_info_menu\'); changeMenuImages(\'general_info_img\', \'/images/_site2/header_footer/js_menu/general_info_over.gif\'); return true;" onMouseDown="changeMenuImages(\'general_info_img\', \'/images/_site2/header_footer/js_menu/general_info_over.gif\'); return true;" onMouseUp="changeMenuImages(\'general_info_img\', \'/images/_site2/header_footer/js_menu/general_info_over.gif\'); return true;"><img name="general_info_img" src="/images/_site2/header_footer/js_menu/general_info.gif" width="93" height="20" border="0"></a></td>\n');
								document.write('<td width="39" height="20"><img src="/images/_site2/spacer.gif" width="39" height="20"></td>\n');
								document.write('<td><a href="/products_and_services/" onMouseOver="switchMenu(\'products_and_services_menu\'); changeMenuImages(\'products_and_services_img\', \'/images/_site2/header_footer/js_menu/products_and_services_over.gif\'); return true;" onMouseDown="changeMenuImages(\'products_and_services_img\', \'/images/_site2/header_footer/js_menu/products_and_services_over.gif\'); return true;" onMouseUp="changeMenuImages(\'products_and_services_img\', \'/images/_site2/header_footer/js_menu/products_and_services_over.gif\'); return true;"><img name="products_and_services_img" src="/images/_site2/header_footer/js_menu/products_and_services.gif" width="143" height="20" border="0"></a></td>\n');
								document.write('<td width="39" height="20"><img src="/images/_site2/spacer.gif" width="39" height="20"></td>\n');
								document.write('<td><a href="/_content/your_market/" onMouseOver="switchMenu(\'your_market_menu\'); changeMenuImages(\'your_market_img\', \'/images/_site2/header_footer/js_menu/your_market_over.gif\'); return true;" onMouseDown="changeMenuImages(\'your_market_img\', \'/images/_site2/header_footer/js_menu/your_market_over.gif\'); return true;" onMouseUp="changeMenuImages(\'your_market_img\', \'/images/_site2/header_footer/js_menu/your_market_over.gif\'); return true;"><img name="your_market_img" src="/images/_site2/header_footer/js_menu/your_market.gif" width="93" height="20" border="0"></a></td>\n');
								document.write('<td width="35" height="20"><img src="/images/_site2/spacer.gif" width="35" height="20"></td>\n');
								document.write('<td><a href="/_content/highlights/" onMouseOver="switchMenu(\'highlights_menu\'); changeMenuImages(\'highlights_img\', \'/images/_site2/header_footer/js_menu/highlights_over.gif\'); return true;" onMouseDown="changeMenuImages(\'highlights_img\', \'/images/_site2/header_footer/js_menu/highlights_over.gif\'); return true;" onMouseUp="changeMenuImages(\'highlights_img\', \'/images/_site2/header_footer/js_menu/highlights_over.gif\'); return true;"><img name="highlights_img" src="/images/_site2/header_footer/js_menu/highlights.gif" width="75" height="20" border="0"></a></td>\n');
								document.write('<td width="35" height="20"><img src="/images/_site2/spacer.gif" width="35" height="20"></td>\n');
								document.write('<td><a href="/_content/contact_us/" onMouseOver="switchMenu(\'contact_us_menu\'); changeMenuImages(\'contact_us_img\', \'/images/_site2/header_footer/js_menu/contact_us_over.gif\'); return true;" onMouseDown="changeMenuImages(\'contact_us_img\', \'/images/_site2/header_footer/js_menu/contact_us_over.gif\'); return true;" onMouseUp="changeMenuImages(\'contact_us_img\', \'/images/_site2/header_footer/js_menu/contact_us_over.gif\'); return true;"><img name="contact_us_img" src="/images/_site2/header_footer/js_menu/contact_us.gif" width="81" height="20" border="0"></a></td>\n');
								document.write('<td width="15" height="20"><img src="/images/_site2/spacer.gif" width="15" height="20"></td>\n');
							document.write('</tr>\n');
						document.write('</table>\n');
					document.write('</div>\n');
					document.write('<div style="position: absolute; top: 20px; height: 22px; width: 760px;">\n');
						document.write('<div class="subMenuDiv" id="about_ci_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #324081;" onMouseOut="startMenuHideTimer();" align="left">\n');
							document.write('<table id="about_ci_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #324081; border-left: 1px solid white;">\n');
								document.write('<tr align="center">\n');
									document.write('<td class="subMenu" id="about_ci1" onMouseOver="mOver_about_ci(\'about_ci1\');" onMouseOut="mOut_about_ci(\'about_ci1\');" onClick="javascript:window.location.href=\'/_content/about_ci/ci_overview.aspx\'">Overview</td>\n');
									document.write('<td class="subMenu" id="about_ci2" onMouseOver="mOver_about_ci(\'about_ci2\');" onMouseOut="mOut_about_ci(\'about_ci2\');" onClick="javascript:window.location.href=\'/_content/about_ci/why_buy_from_ci.aspx\'">Why Buy from CI</td>\n');
									document.write('<td class="subMenu" id="about_ci3" onMouseOver="mOver_about_ci(\'about_ci3\');" onMouseOut="mOut_about_ci(\'about_ci3\');" onClick="javascript:window.location.href=\'/_content/about_ci/offenders_at_work.aspx\'">Offenders at Work</td>\n');
									document.write('<td class="subMenu" id="about_ci4" onMouseOver="mOver_about_ci(\'about_ci4\');" onMouseOut="mOut_about_ci(\'about_ci4\');" onClick="javascript:window.location.href=\'/_content/about_ci/offender_re-entry.aspx\'">Re-Entry</td>\n');
									document.write('<td class="subMenu" id="about_ci5" onMouseOver="mOver_about_ci(\'about_ci5\');" onMouseOut="mOut_about_ci(\'about_ci5\');" onClick="javascript:window.location.href=\'/_content/about_ci/facilities.aspx\'">Facilities</td>\n');
									document.write('<td class="subMenu" id="about_ci6" onMouseOver="mOver_about_ci(\'about_ci6\');" onMouseOut="mOut_about_ci(\'about_ci6\');" onClick="javascript:window.location.href=\'/_content/about_ci/rcw.aspx\'">Enabling Legislation</td>\n');
									document.write('<td class="subMenu" id="about_ci7" onMouseOver="mOver_about_ci(\'about_ci7\');" onMouseOut="mOut_about_ci(\'about_ci7\');" onClick="javascript:window.location.href=\'/_content/about_ci/news_and_reports.aspx\'">News &amp; Reports</td>\n');
									document.write('<td class="subMenu" id="about_ci8" onMouseOver="mOver_about_ci(\'about_ci8\');" onMouseOut="mOut_about_ci(\'about_ci8\');" onClick="javascript:window.location.href=\'/_content/about_ci/employment.aspx\'">Employment</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
						document.write('<div class="subMenuDiv" id="general_info_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #800080;" onMouseOut="startMenuHideTimer();" align="left">\n');
							document.write('<table id="general_info_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #800080; border-left: 1px solid white;">\n');
								document.write('<tr align="center">\n');
									document.write('<td class="subMenu" id="general_info1" onMouseOver="mOver_general_info(\'general_info1\');" onMouseOut="mOut_general_info(\'general_info1\');" onClick="javascript:window.location.href=\'/_content/general_info/eligible_customers.aspx\'">Eligible Customers</td>\n');
									document.write('<td class="subMenu" id="general_info2" onMouseOver="mOver_general_info(\'general_info2\');" onMouseOut="mOut_general_info(\'general_info2\');" onClick="javascript:window.location.href=\'/_content/general_info/state_contracts.aspx\'">CI State Contracts</td>\n');
									document.write('<td class="subMenu" id="general_info3" onMouseOver="mOver_general_info(\'general_info3\');" onMouseOut="mOut_general_info(\'general_info3\');" onClick="javascript:window.location.href=\'/_content/general_info/sales_terms_and_credit_policy.aspx\'">Sales Terms &amp; Credit Policy</td>\n');
									document.write('<td class="subMenu" id="general_info4" onMouseOver="mOver_general_info(\'general_info4\');" onMouseOut="mOut_general_info(\'general_info4\');" onClick="javascript:window.location.href=\'/_content/general_info/delivery.aspx\'">Delivery</td>\n');
									document.write('<td class="subMenu" id="general_info5" onMouseOver="mOver_general_info(\'general_info5\');" onMouseOut="mOut_general_info(\'general_info5\');" onClick="javascript:window.location.href=\'/_content/general_info/warranty.aspx\'">Warranty</td>\n');
									document.write('<td class="subMenu" id="general_info6" onMouseOver="mOver_general_info(\'general_info6\');" onMouseOut="mOut_general_info(\'general_info6\');" onClick="javascript:window.location.href=\'/_content/general_info/privacy_policy.aspx\'">Privacy Policy</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
						document.write('<div class="subMenuDiv" id="products_and_services_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #2685BD;" onMouseOut="startMenuHideTimer();" align="center">\n');
							document.write('<table id="products_and_services_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #2685BD; border-left: 1px solid white;">\n');
								document.write('<tr align="center">\n');
									document.write('<td class="subMenu" id="products_and_services1" onMouseOver="mOver_products_and_services(\'products_and_services1\');" onMouseOut="mOut_products_and_services(\'products_and_services1\');" onClick="javascript:window.location.href=\'/products_and_services/fast_fulfillment/\'">Fast Fulfillment</td>\n');
									document.write('<td class="subMenu" id="products_and_services2" onMouseOver="mOver_products_and_services(\'products_and_services2\');" onMouseOut="mOut_products_and_services(\'products_and_services2\');" onClick="javascript:window.location.href=\'/products_and_services/furniture/\'">Furniture</td>\n');
									document.write('<td class="subMenu" id="products_and_services3" onMouseOver="mOver_products_and_services(\'products_and_services3\');" onMouseOut="mOut_products_and_services(\'products_and_services3\');" onClick="javascript:window.location.href=\'/products_and_services/more_products/\'">More Products</td>\n');
									document.write('<td class="subMenu" id="products_and_services4" onMouseOver="mOver_products_and_services(\'products_and_services4\');" onMouseOut="mOut_products_and_services(\'products_and_services4\');" onClick="javascript:window.location.href=\'/products_and_services/more_services/\'">More Services</td>\n');
									document.write('<td class="subMenu" id="products_and_services5" onMouseOver="mOver_products_and_services(\'products_and_services5\');" onMouseOut="mOut_products_and_services(\'products_and_services5\');" onClick="javascript:window.location.href=\'/products_and_services/clearance/\'">Clearance</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
						document.write('<div class="subMenuDiv" id="your_market_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #B22222;" onMouseOut="startMenuHideTimer();" align="right">\n');
							document.write('<table id="your_market_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #B22222; border-left: 1px solid white;">\n');
								document.write('<tr align="center">\n');
									document.write('<td class="subMenu" id="your_market1" onMouseOver="mOver_your_market(\'your_market1\');" onMouseOut="mOut_your_market(\'your_market1\');" onClick="javascript:window.location.href=\'/_content/your_market/government.aspx\'">Government</td>\n');
									document.write('<td class="subMenu" id="your_market2" onMouseOver="mOver_your_market(\'your_market2\');" onMouseOut="mOut_your_market(\'your_market2\');" onClick="javascript:window.location.href=\'/_content/your_market/public_safety.aspx\'">Public Safety</td>\n');
									document.write('<td class="subMenu" id="your_market3" onMouseOver="mOver_your_market(\'your_market3\');" onMouseOut="mOut_your_market(\'your_market3\');" onClick="javascript:window.location.href=\'/_content/your_market/k12_education.aspx\'">K-12 Education</td>\n');
									document.write('<td class="subMenu" id="your_market4" onMouseOver="mOver_your_market(\'your_market4\');" onMouseOut="mOut_your_market(\'your_market4\');" onClick="javascript:window.location.href=\'/_content/your_market/higher_education.aspx\'">Higher Education</td>\n');
									document.write('<td class="subMenu" id="your_market5" onMouseOver="mOver_your_market(\'your_market5\');" onMouseOut="mOut_your_market(\'your_market5\');" onClick="javascript:window.location.href=\'/_content/your_market/non-profit.aspx\'">Non-Profit</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
						document.write('<div class="subMenuDiv" id="highlights_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #E88B00;" onMouseOut="startMenuHideTimer();" align="right">\n');
							document.write('<table id="highlights_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #E88B00; border-left: 1px solid white;">\n');
								document.write('<tr align="center" style="border-left: 1px solid white;">\n');
									document.write('<td class="subMenu" id="highlights1" onMouseOver="mOver_highlights(\'highlights1\');" onMouseOut="mOut_highlights(\'highlights1\');" onClick="javascript:window.location.href=\'/_content/highlights/announcements.aspx\'">Announcements</td>\n');
									document.write('<td class="subMenu" id="highlights2" onMouseOver="mOver_highlights(\'highlights2\');" onMouseOut="mOut_highlights(\'highlights2\');" onClick="javascript:window.location.href=\'/_content/highlights/new_and_notable.aspx\'">New &amp; Notable</td>\n');
									document.write('<td class="subMenu" id="highlights3" onMouseOver="mOver_highlights(\'highlights3\');" onMouseOut="mOut_highlights(\'highlights3\');" onClick="javascript:window.location.href=\'/_content/highlights/ci_newsletter.aspx\'">CI Newsletter</td>\n');
									document.write('<td class="subMenu" id="highlights4" onMouseOver="mOver_highlights(\'highlights4\');" onMouseOut="mOut_highlights(\'highlights4\');" onClick="javascript:window.location.href=\'/_content/highlights/case_studies.aspx\'">Case Studies</td>\n');
									document.write('<td class="subMenu" id="highlights5" onMouseOver="mOver_highlights(\'highlights5\');" onMouseOut="mOut_highlights(\'highlights5\');" onClick="javascript:window.location.href=\'/_content/highlights/sustainability.aspx\'">Sustainability</td>\n');
									document.write('<td class="subMenu" id="highlights6" onMouseOver="mOver_highlights(\'highlights6\');" onMouseOut="mOut_highlights(\'highlights6\');" onClick="javascript:window.location.href=\'/_content/highlights/partnerships.aspx\'">Partnerships</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
						document.write('<div class="subMenuDiv" id="contact_us_menu" onMouseOver="stopMenuHideTimer();" style="visibility: hidden; background-color: #6B8E23;" onMouseOut="startMenuHideTimer();" align="right">\n');
							document.write('<table id="contact_us_table" height="22" cellspacing="0" cellpadding="0" border="0" style="background-color: #6B8E23; border-left: 1px solid white;">\n');
								document.write('<tr align="center">\n');
									document.write('<td class="subMenu" id="contact_us1" onMouseOver="mOver_contact_us(\'contact_us1\');" onMouseOut="mOut_contact_us(\'contact_us1\');" onClick="javascript:window.location.href=\'/_content/contact_us/find_your_account_executive.aspx\'">Find Your Account Executive</td>\n');
									document.write('<td class="subMenu" id="contact_us2" onMouseOver="mOver_contact_us(\'contact_us2\');" onMouseOut="mOut_contact_us(\'contact_us2\');" onClick="javascript:window.location.href=\'/_content/contact_us/literature_request.aspx\'">Literature Request</td>\n');
									document.write('<td class="subMenu" id="contact_us3" onMouseOver="mOver_contact_us(\'contact_us3\');" onMouseOut="mOut_contact_us(\'contact_us3\');" onClick="javascript:window.location.href=\'/_content/contact_us/showrooms.aspx\'">Showrooms</td>\n');
									document.write('<td class="subMenu" id="contact_us4" onMouseOver="mOver_contact_us(\'contact_us4\');" onMouseOut="mOut_contact_us(\'contact_us4\');" onClick="javascript:window.location.href=\'/_content/contact_us/tradeshows_events.aspx\'">Tradeshows &amp; Events</td>\n');
									document.write('<td class="subMenu" id="contact_us5" onMouseOver="mOver_contact_us(\'contact_us5\');" onMouseOut="mOut_contact_us(\'contact_us5\');" onClick="javascript:window.location.href=\'/_content/contact_us/email_ci.aspx\'">Email CI</td>\n');
								document.write('</tr>\n');
							document.write('</table>\n');
						document.write('</div>\n');
					document.write('</div>\n');
				document.write('</td>\n');
			document.write('</tr>\n');
		document.write('</table>\n');
	}
}