﻿$(document).ready(function(){

  $('*').each(function() {
    if ($(this).css('float') !== 'none') {
  $(this).css('display', 'inline');
    }
  });

	// $('.cornis').corners("10px 10px");
/*  $("#regulamento").animate({
            height: 'show',
            opacity: 'show'
  }, 3000);

  $(".regulamento").click(function(){
     $("#regulamento").slideToggle(function(){
       $(this).fadeIn();
     });
  });       */

  $("#formfichadeinscricao").hide();
  //$(".curso").hide();

  $(".inscrevase2").click(function(){
    // $("#regulamento").fadeOut();
    // $(".inscrevase").css();
     $("#formfichadeinscricao").fadeIn();
   //  $(".curso").fadeIn();
  });

  $(".curso").click(function(){
    // $("#regulamento").fadeIn();
     $("#formfichadeinscricao").fadeOut();
    // $(".inscrevase").fadeIn();
    // $(".curso").fadeOut();
  });

  $(".regulamento").toggle(function() {
        $("#regulamento").animate({
            height: 'show',
            opacity: 'show'
        }, 3000);
    }, function() {
        $("#regulamento").animate({
            height: 'hide',
            opacity: 'hide'
        }, 1500);
    });

});