﻿$(document).ready(function(){

  $('*').each(function() {
    if ($(this).css('float') !== 'none') {
  $(this).css('display', 'inline');
    }
  });

  $("#formfichadeinscricao").hide();

  $(".inscrevase2").click(function(){
     $("#formfichadeinscricao").fadeIn();
  });

  $(".curso").click(function(){
     $("#formfichadeinscricao").fadeOut();
  });

  $(".regulamento").toggle(function() {
        $("#regulamento").animate({
            height: 'show',
            opacity: 'show'
        }, 3000);
    }, function() {
        $("#regulamento").animate({
            height: 'hide',
            opacity: 'hide'
        }, 1500);
    });

});


// JavaScript Document
// Correctly handle PNG transparency in Win IE 5.5 or higher.
// http://homepage.ntlworld.com/bobosola. Updated 02-March-2004

