/* ------- Site-wide scripts for www.thewhiteheadgroup.com ------- */

// 'decodes' an email address inline.
// Used to deter spam bots
function obfsct(piece1, piece2, piece3, text) {
	var address = piece2 + piece1 + piece3;
	var output = '<a href="mailto:' + address + '">' + text + '</a>';
	
	return output;
}

// prints the content of the page
// site's visual style automatically degrades for print
function printPage() {
	window.print();
	return false;
}

//
// rollovers

// set rollovers on page load
/*
window.onload = function () {

	// all templates must use <div/> for editable areas!!
	var x = document.getElementById('main-nav').getElementsByTagName('img');
	for (var i = 0; i < x.length; i++) {
		x[i].onmouseover = new Function('rollOver(this.id)');
		x[i].onmouseout = new Function('rollOff(this.id)');
	}
}

function rollOver(section) {
	document.getElementById(section).src = "images/n_" + section + "_o.gif";
}

function rollOff(section) {
	document.getElementById(section).src = "images/n_" + section + ".gif";
}
*/

// end rollover functions
//
