$(function(){
	$('#carousel').infiniteCarousel({
		displayTime: 6000,
		textholderHeight : .25,
		displayThumbnails: false,

	});
});

function isValidEmail(str) {
	return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}


function ValidateForm(){
	var email=document.emailFrm.emailAddr;
	
	if (isValidEmail(email.value)==false){
		alert('Sorry, but this appears to be an invalid email address');
	}
	else {
		document.emailFrm.submit();
	}
}

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-24088342-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
