$(function() {
	$("#registro_form").validate( { rules: { terminos: "required" } } );
	
	$("a.gallery").fancybox({
		'hideOnContentClick': false
	});

	$(".votar_btn").click(function() {
	    $.post("modules/ajax_votar.php", { id: this.id },
		function(data){
    		alert(data);
  		})
	})
})

