jQuery(function() {

   // Accordion title Participe
  	jQuery("h3.titleParticipe").click(function () {
			if (jQuery("#participe").is(":hidden")) {
				jQuery("#participe").slideDown("slow");
				jQuery('h3.titleParticipe').addClass('ativo');
			} else {
				jQuery("#participe").slideUp("slow");
				jQuery('h3.titleParticipe').removeClass('ativo');
			}
		});
	
	 // Accordion title Regulamento
	jQuery("h3.titleRegulamento").click(function () {
		if (jQuery("#regulamento").is(":hidden")) {
			jQuery("#regulamento").slideDown("slow");
			jQuery('h3.titleRegulamento').addClass('ativo');
		} else {
			jQuery("#regulamento").slideUp("slow");
			jQuery('h3.titleRegulamento').removeClass('ativo');
		}
	});
		
  // Mascara
  jQuery("#dt").mask("99/99/9999", {placeholder:"   "});
  jQuery("#cpf").mask("999.999.999-99", {placeholder:"   "});
	jQuery("#cep").mask("99999-999", {placeholder:"   "});
	jQuery("#estado").mask("aa", {placeholder:"   "});
	jQuery("#ano").mask("9", {placeholder:"   "});
	
	// Scrollpane
	if( jQuery.browser.msie && jQuery.browser.version < 8 ) {
		// IE
		//alert('ie6');
	} else {
		jQuery('#contentRegulamento').jScrollPane({scrollbarWidth:3, scrollbarMargin:5});
		jQuery('#regulamento').css({'visibility': 'visible', 'display': 'none'});
	}
	

});