$(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();
    };
});
/*var _open = false;
$('.right_column .language .selection').click(function(){

    if(!_open){
        $('.right_column .language .choix').show('slow');
        _open = true;
    }else{
         $('.right_column .language .choix').hide('slow');
         _open = false;
    }
});*/
 $("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.
    });
  });




});
