/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 * @import: jquery.validate.pack.js
 */

$(function()
{
	$("form p:even").addClass("even");
	
	$("#accreditation").validate(
	{
		errorPlacement: function(error, element) {},
		errorContainer: "#form_message",
		rules: {
			"Teléfono:": {
      			required: "#cell:blank"
    		},
			"Foto:": {
				required: true,
				accept: "jpg|gif|png|jpeg"
 			}
		}
	});



})

