<!--
var preload = new Array();
preload[0] = 'images/links/link_about_strengths.gif';
preload[1] = 'images/links/link_about_quality.gif';
preload[2] = 'images/links/link_about_partners.gif';
preload[3] = 'images/links/link_tech_design.gif';
preload[4] = 'images/links/link_tech_facilities.gif';
preload[5] = 'images/links/link_tech_tooling.gif';
preload[6] = 'images/links/link_tech_machining.gif';
preload[7] = 'images/links/link_tech_prototype.gif';
preload[8] = 'images/links/link_tech_case.gif';

var show_about_flag = 0;
var show_technology_flag = 0;
//var show_contact_flag = 0;

function menu_over(id)
{
	switch (id)
	{
		case "about":
			show_about_flag = 1;
			show_technology_flag = 0;
			//show_contact_flag = 0;
			break;
		case "technology":
			show_about_flag = 0;
			show_technology_flag = 1;
			//show_contact_flag = 0;
			break;		
		//case "contact":	
		//	show_about_flag = 0;
		//	show_technology_flag = 0;
		//	show_contact_flag = 1;
		//	break;	
	}	
	document.getElementById(id).src = 'images/links/link_' + id + '_over.gif';
	var submenu = "sublinks" + id;
	show(submenu);	
}

function menu_out(id)
{
	switch (id)
	{
		case "about":
			show_about_flag = 0;
			break;
		case "technology":
			show_technology_flag = 0;
			break;		
		//case "contact":	
		//	show_contact_flag = 0;	
		//	break;	
	}	
	document.getElementById(id).src = 'images/links/link_' + id + '_out.gif';	
}

function submenu_over(section, id)
{
	switch (id)
	{
		case "about":
			show_about_flag = 1;
			break;
		case "technology":
			show_technology_flag = 1;
			break;		
		//case "contact":	
		//	show_contact_flag = 1;	
		//	break;	
	}	
	document.getElementById(id).src = 'images/links/link_' + section + '_' + id + '_over.gif';	
}

function submenu_out(section, id)
{
	switch (id)
	{
		case "about":
			show_about_flag = 0;
			break;
		case "technology":
			show_technology_flag = 0;
			break;		
		//case "contact":	
		//	show_contact_flag = 0;	
		//	break;	
	}	
	document.getElementById(id).src = 'images/links/link_' + section + '_' + id + '_out.gif';	

}

function clean_up()
{
	if (show_about_flag == 0)
	{
		hide("sublinksabout");
		document.getElementById("about").src = 'images/links/link_about_out.gif';	
	}
	if (show_technology_flag == 0)
	{
		hide("sublinkstechnology");
		document.getElementById("technology").src = 'images/links/link_technology_out.gif';	
	}
	//if (show_contact_flag == 0)
	//{
	//	hide("sublinkscontact");
	//	document.getElementById("contact").src = 'images/links/link_contact_out.gif';	
	//}
}

setInterval('clean_up()', 250);

//-->