<!--

// mouseover script
home_off=new Image()
home_off.src = "images/nav/home_off.jpg"

home_on=new Image()
home_on.src = "images/nav/home_on.jpg"

info_off=new Image()
info_off.src = "images/nav/information_off.jpg"

info_on=new Image()
info_on.src = "images/nav/information_on.jpg"

capa_off=new Image()
capa_off.src = "images/nav/capabilities_off.jpg"

capa_on=new Image()
capa_on.src = "images/nav/capabilities_on.jpg"

port_off=new Image()
port_off.src = "images/nav/portfolio_off.jpg"

port_on=new Image()
port_on.src = "images/nav/portfolio_on.jpg"

moti_off=new Image()
moti_off.src = "images/nav/motives_off.jpg"

moti_on=new Image()
moti_on.src = "images/nav/motives_on.jpg"

news_off=new Image()
news_off.src = "images/nav/news_off.jpg"

news_on=new Image()
news_on.src = "images/nav/news_on.jpg"

cont_off=new Image()
cont_off.src = "images/nav/contact_off.jpg"

cont_on=new Image()
cont_on.src = "images/nav/contact_on.jpg"

function filter(imagename,objectsrc){
	if (document.images) {
		document.images[imagename].src=eval(objectsrc+".src")
	}
}

// basic script to create popup window
function openWindow(url,width,height,name) {
	var myWin = null

	// if the window has not already been created, then create it now
	if(!myWin || myWin.closed) {
		myWin = window.open(url, name, "width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no");
	// otherwise, just turn focus to the popup window
	} else {
		myWin.focus(wname);
	}
}

// -->

