
var host = "http://www.fmegroup.com/";

if (window.location.hostname == "192.168.1.17" || window.location.hostname == "www.livingdesigns-uk.com")
	host = "/fme/";

var rootPath = host + "images/menu/";

var imgarr = new Array()



function swap(imgref, imgto) {
	eval ('document.' + imgref + '.src = imgarr[' + imgto + '].src');
	return true;
	}

function insertPresentation() {
	// EMBED the SWF
	var logo = '<object type="application/x-shockwave-flash" data="flash/logo.swf" width="120" height="66">'
				+ '<param name="movie" value="flash/logo.swf"><param name="bgcolor" value="#ffffff" />'
				+ '</object>';

	document.getElementById('logo-hom').innerHTML = logo;
	}


window.onload = function(){

	$("area.m_1").mouseover(function(){
		swap('menu_img', 1);
	});	
	$("area.m_1").mouseout(function(){
		swap('menu_img', 0);
	});	
	$("area.m_2").mouseover(function(){
		swap('menu_img', 2);
	});	
	$("area.m_2").mouseout(function(){
		swap('menu_img', 0);
	});	
	$("area.m_3").mouseover(function(){
		swap('menu_img', 3);
	});	
	$("area.m_3").mouseout(function(){
		swap('menu_img', 0);
	});	
	
	$("area.sm_1").mouseover(function(){
		swap('subnav_img', 5);
	});	
	$("area.sm_1").mouseout(function(){
		swap('subnav_img', 4);
	});	

	if (document.getElementById('logo-hom')){
		insertPresentation();
		}
}

