jQuery(document).ready(function() {
		
		// Valida o form
		jQuery("#formulario").validate();
		
		// Show regulamento
		jQuery(".regulamento").click(function() {
			jQuery("#background").fadeIn("slow", function () {
				jQuery("#regulamento").fadeIn(500);
			});
		});
		
		// Hide regulamento
		jQuery("#background").click(function() {
			jQuery("#regulamento").fadeOut("slow", function () {
				jQuery("#background").fadeOut(500);
			});
		});
		
	});
