//navHover = function() {
//	var lis = document.getElementById("menu").getElementsByTagName("LI");
//	for (var i=0; i<lis.length; i++) {
//		lis[i].onmouseover=function() {
//			this.className+=" iehover";
//		}
//		lis[i].onmouseout=function() {
//			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
//		}
//	}
//}
//if (window.attachEvent) window.attachEvent("onload", navHover);

/********************************** NEWSLETTER SUBSCRIPTION ***********************************/
function subscribe() {
	var email_sub = $('#joinfield').val();
	if (email_sub) {
		jQuery.ajax({
			type: 'GET',
			url: 'select.php',
			data: 'select_id=newsletter_subscribe&act=subscribe&email='+email_sub,
//			beforeSend: function() {
//				jQuery("form#joinNewsletter").html('<strong> please wait...</strong>');
//			},
			success: function(msg){
//				jQuery("form#joinNewsletter").html(msg);
        alert(msg);
        $('#joinfield').val(email_sub);
			}
		});
	}
}