$(document).ready(function() {

<!-- Hidden Divs -->
	$('.hide').hide();
 	$('#features li a').click(function() {
 		$(this).next().slideToggle('slow');
 		return false;
 	});

<!-- External Website -->
	$('a[href^="http"]')
	  .attr({
	    target: "_blank",
	    title: "This link directs you to an external website"
	  });

<!-- Lightbox for Screenshots -->
	if($(".fancybox").length) {
		$('.fancybox').fancybox({
			'zoomSpeedIn':	0,
			'zoomSpeedOut':	0,
			'overlayShow':	true
		});
	}

<!-- Required Fields highlighting -->
	if($("#evotrialform").length) {
		$("#pname, #cname, #email").addClass("required");
	}
	$(".required").each(function() {
		if(this.value) {
			$(this).removeClass("required");
		}
	});

<!-- Form validation -->
	$.getScript("js/jquery.validate.js", function() {
		if($("#evotrialform").length) {
			$("#evotrialform").submit(function() {
				if(confirm("Ready to Submit?")) {return true;}
				else {return false;}
			});
			$("#evotrialform").validate({
				rules: {
					email:{
						email: true
					}
				}
			});
		}
	});

});