<!--

if (document.images) {
	// MAIN MENU IMAGES
	enter = new Image();
	enter.src =  "images/enter.gif";
	enter_on = new Image();
	enter_on.src =  "images/enter_on.gif";

	about = new Image();
	about.src =  "images/about.gif";
	about_on = new Image();
	about_on.src =  "images/about_on.gif";

	clients = new Image();
	clients.src =  "images/clients.gif";
	clients_on = new Image();
	clients_on.src =  "images/clients_on.gif";

	portfolio = new Image();
	portfolio.src =  "images/portfolio.gif";
	portfolio_on = new Image();
	portfolio_on.src =  "images/portfolio_on.gif";

	contact = new Image();
	contact.src =  "images/contact.gif";
	contact_on = new Image();
	contact_on.src =  "images/contact_on.gif";

	staff = new Image();
	staff.src =  "images/staff.gif";
	staff_on = new Image();
	staff_on.src =  "images/staff_on.gif";
	
	inquiries = new Image();
	inquiries.src =  "images/inquiries.gif";
	inquiries_on = new Image();
	inquiries_on.src =  "images/inquiries_on.gif";

}

function subOn(imageName) {	
	if (document.images) {
		document[imageName].src = eval(imageName + "_on.src");
	}	
}

function subOff(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + ".src");
	}
}

function sendMail() {

	var name = "inquiries";
	var domain = "memocomm";
 	window.location = ("mailto:" + name + "@" + domain + ".com");

}
	
//-->  