$(function() {
    if ($.fn.popeye) {
        $('#videogallery').popeye();
    }
    
    $(".fancyvideo, .popeye-stage").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'hideOnContentClick': false,
		'overlayOpacity': 0.5
	}); 
	
	$(".thumb").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'overlayOpacity': 0.5
	}); 
	
	$(".emailLink").click(function(){
	    window.location.href = 'mailto://mats' + '@ext-scheduler' + '.com';
	    return false;
	});
	
	var interval = setInterval(function() {
	    $('.popeye-next').trigger('click');
	}, 5000);
	
    $("#quickContactForm form").validate({
        onfocusout : false,
		rules: {
			namefield: "required",
			company: "required",
			email: {
				required: true,
				email: true
			}
		},
		showErrors: function(errorMap, errorList) {
		    if (errorList.length > 0) {
		        $("#quickContactForm label.error").html('Please complete the fields above.');
		    } else {
		        $("#quickContactForm label.error").html('');
		    }
	    }
	});
   

    $('#sendform').one('click', function() {
        if ($('#quickContactForm form').valid()) {
            $('#quickContactForm form').submit();
        }
        return false;
    });

    $('#quickContactForm form').ajaxForm(function() { 
        $('body').append('<img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1042491458/?label=eweSCPibpAEQwtCM8QM&amp;guid=ON&amp;script=0"/>');
        alert('Form submitted, an email will be sent to you shortly containing a link to the trial kit!');
    }); 
});