function sendEmail(id) {
	var e = document.getElementById(id).req_email.value;
	var p = document.getElementById(id).req_product.value;
	new ajax ('/sendMail.php', {
		postBody: 'e='+e+'&p='+p,
		onComplete: confirmEmail
	});
}
function confirmEmail() {
	document.getElementById('req_div').innerHTML = '<p>Thank you for requesting information on this product. A representative will contact you shortly via the email address you supplied.</p>';
}


function sfHover() {
	var sfEls = document.getElementById("mainmenu").getElementsByTagName("li");
	for ( var i = 0; i < sfEls.length; i++ ) {
		sfEls[i].onmouseover = function() {
				this.className += " sfhover";
			}
		sfEls[i].onmouseout = function() {
				this.className = "";
			}
	}
}
window.attachEvent("onload", sfHover); 
