jQuery(document).ready(function($) {
	
	// set up navigation
	$("a",$("nav ul li").not(".current")).bind("mouseover",function(e) {		
		$(this).stop().animate({height:'116',lineHeight:'60'},100);
	});
	
	$("a",$("nav ul li").not(".current")).bind("mouseout",function(e) {
		$(this).stop().animate({height:'150',lineHeight:'106'},100);
	});	
});

function validateform(frm) {

	var v = jQuery("input#email_field").val();
	var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	
	if (jQuery(".width-3.contact span").length>0) jQuery(".width-3.contact span").remove();
	
	if (!reg.test(v)) {
		jQuery(".width-3.contact").append("<span class='error'>Invalid email</span>");
	} else {
		jQuery(".width-3.contact").append("<span class='success'>Thank you</span>");
		var p = window.location.href+"?nocache=1";
		jQuery.post(p, jQuery("#frm8A7D767AB213ECB94EC89A0EB8EBA623").serialize());
		jQuery("input#email_field").val("");
	}
	
	return false;
}

