sfHover = function() {
	var sfEls = document.getElementById("main-nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function sendAmigoForm() {	
	//Send Form	
	$.post("../amigosend.php", {	
		em_wfs_formfield_2210521: $("#input-first").get(0).value,
		em_wfs_formfield_2210522: $("#input-last").get(0).value,
		em_wfs_formfield_2210519: $("#input-email").get(0).value,
		em_wfs_formfield_2210520: $("#input-area").get(0).value,
		submitaction: "3",
		mlid: "25929",
		siteid: "12346732",
		tagtype: "q2",
		demographics: "-1,2,1,58272",
		redirection: "http://",
		uredirection: "http://",
		welcome: "",
		double_optin: "",
		append: "",
		update: "on",
		activity: "submit"
		}, function(data) {
	
		//Show result
		//$(document.getElementById("wpcf7-f3-p37-o1")).show(150);
		//alert("Form submitting");
	},"html");		 
	
}

function sendLyrisForm() {
	//Hide Form
	//$(document.getElementById("wpcf7-f3-p37-o1")).hide(150);
	//Send Form
	$.post("../lyrissend.php", {
		val_1: $("#input-first").get(0).value,
		val_2: $("#input-last").get(0).value,
		email: $("#input-email").get(0).value,
		val_58272: $("#input-area").get(0).value,
		submitaction: "3",
		mlid: "25929",
		siteid: "12346732",
		tagtype: "q2",
		demographics: "-1,2,1,58272",
		redirection: "http://",
		uredirection: "http://",
		welcome: "",
		double_optin: "",
		append: "",
		update: "on",
		activity: "submit"
		}, function(data) {
	
		//Show result
		//$(document.getElementById("wpcf7-f3-p37-o1")).show(150);
		//alert("Form submitting");
	},"html");		 
	
}
