/*Image rollover functions*/
function rollOnImage(el,pic)
{
	el.src = pic;
}

function rollOffImage(el,pic)
{
	el.src = pic;
}

function writeAddressLink(name, domain)
{
	document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
	document.write(name + '@' + domain + '</a>');
}	

String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ''); };
