 $(document).ready(function(){
  function accordion(){
    $('.accordion ol h3').click(function() {
      $('.accordion ol h3').next().hide('slow');
      $(this).next().toggle('slow');
      return false;
    }).next().hide()
  }
  function start(){
    accordion();
  }
  start();
});

 function mostraSelo(tipo){

        switch(tipo){
         case 'grande':
           $("#link_selo_grande").show();
           $("#link_selo_medio").css('display','none');
           $("#link_selo_pequeno").css('display','none');
         break;
         case 'medio':
            $("#link_selo_medio").show();
            $("#link_selo_pequeno").css('display','none');
            $("#link_selo_grande").css('display','none');
         break;
         case 'pequeno':
            $("#link_selo_pequeno").show();
            $("#link_selo_medio").css('display','none');
            $("#link_selo_grande").css('display','none');
         break;
        }
 }

function mostraDica(dica){
  switch(dica){
     case 'blog':
         $('#txt-blog').show();
         $('#txt-twitter').css('display','none');
         $('#txt-facebook').css('display','none');
         $('#txt-msn').css('display','none');
         $('#txt-orkut').css('display','none');
    break;
    case 'twitter':
         $('#txt-twitter').show();
         $('#txt-blog').css('display','none');
         $('#txt-facebook').css('display','none');
         $('#txt-msn').css('display','none');
         $('#txt-orkut').css('display','none');
    break;
    case 'facebook':
         $('#txt-facebook').show();
         $('#txt-blog').css('display','none');
         $('#txt-twitter').css('display','none');
         $('#txt-msn').css('display','none');
         $('#txt-orkut').css('display','none');
    break;
    case 'orkut':
         $('#txt-orkut').show();
         $('#txt-blog').css('display','none');
         $('#txt-twitter').css('display','none');
         $('#txt-msn').css('display','none');
         $('#txt-facebook').css('display','none');
   break;
   case 'msn':
         $('#txt-msn').show();
         $('#txt-blog').css('display','none');
         $('#txt-twitter').css('display','none');
         $('#txt-orkut').css('display','none');
         $('#txt-facebook').css('display','none');
   break;
  }
}

function active(classe){
    $(classe).addClass(' ativo');
}

function fechar_floater_easychat(){
    $("#flash-float").css('display','none');
}
