$(document).ready(function() {
/*
/*effect on search form*/
$('#primary-menu > li').each(function(indice){
    $ul = $(this).children('ul');
    $(this).remove('ul');
    $(this).html('<span>'+$(this).html()+'</span>');
    $(this).append($ul);
    if(indice == ($('#primary-menu > li').size()-1)){
        Cufon.now();
    };
});



 $("li.clicli").mouseover(function () {
   $(this).children(".picture").fadeTo('slow', 0.6, function() {
      // Animation complete.
    });
  });

$("li.clicli").mouseout(function () {
 $(this).children(".picture").fadeTo('slow', 1, function() {
      // Animation complete.
    });
  });


















});
function confSlide(bouton,idConf){

 if($("#conference"+idConf).css('display') == 'none'){
     $("#conference"+idConf).show("slow");
 }else{
     $("#conference"+idConf).hide("fast");
 }



}
