$(document).ready(function() {
    $('#mycarousel').jcarousel();	

    $("img:below-the-fold").lazyload({
        placeholder : "/gfx/shim_blank.gif", 
        event : "sporty" 
    });

});

$(window).bind("load", function() { 
   $("img").trigger("sporty");
	$("#carousel").jCarouselLite({
		visible: 1,
		auto: 5000,
		speed: 1000,
		easing: "easeInOutSine"
    });
}); 

function NewsletterSubscribe() {
	
	var email = $("#email").val();
	
	if (email != "") {
		$.ajax({
			type: "POST",
			url: "/newsletterAjax.asp",
			data: "email=" + escape(email),
			success: function(msg){
			
				if(msg=="EXISTS") {
				
					$("#news1").html("<strong>This email address is already in our database.</strong>");
				}
				else if(msg=="SUCCESS") {
					$("#news1").html("<p>Thank you for your interest. We have sent you the report.</p>");
					$("#news2").hide();
					$("#newsForm").hide();
				}
				else if(msg=="FAILED") {
					$("#news1").html("<strong>This email address is invalid.<br />Please check and try again.</strong>"); 
				}
			}
		});
		
	}
}

