// Javascript for web site
// Copyright (c) 2004-2005 Montebello Partners.
// All rights reserved.

// Includer must define variable "sectionName"

function init() {
  pushDown(sectionName);
}

function pushDown(name) {
  document.images[name].src = '/images/nav_' + name + '_on.gif';

  return true;
}

function popUp(name) {
  if (name != sectionName)
	document.images[name].src = '/images/nav_' + name + '.gif';

  return true;
}


function mpEmail( name, text )
{
	email (name, 'montebellopartners.com', text);
}

function email( name, domain, text )
{
	var address = name + '@' + domain;
	if (text == null)
		text = address;

	document.write('<a href="mailto:' + address + '">');
	document.write(text);
	document.write('</a>');
}

