//---------------------------------------------------------------

window.addEvent('load', function() {
	$ES('.bvRowLite','subsidenav').each( function(el) {
		el.addEvent('mouseover', function(){ $E('.'+this.parentNode.className,'subnav').addClass('rowOn'); });
		el.addEvent('mouseout', function(){ $E('.'+this.parentNode.className,'subnav').removeClass('rowOn'); });
	});
}); // addEvent..onload

//---------------------------------------------------------------

function produceMailTo( to, subject, body ) {
	var doc = "mailto:" + to +
	"?subject=" + escape(subject) +
	"&body=" + escape(body);
	window.location = doc
} // function..produceMailTo

//---------------------------------------------------------------


// Rollover functions
function imghighlight(whichimg) {
	var imgsrc = new String(whichimg.src);
	imgsrc = imgsrc.replace(new RegExp('_off\.','g'),'_on\.');
	whichimg.src = imgsrc;
}

function imgnohighlight(whichimg) {
	var imgsrc = new String(whichimg.src);
	imgsrc = imgsrc.replace(new RegExp('_on\.','g'),'_off\.');
	whichimg.src = imgsrc;
}