/**
 * @author thomas ( www.tequila-studio.com )
 */
$(document).ready( function () {
  $("#contenu div.infos").hide();
  $("#contenu .trigger").click( function ()
  {
    $(this).parent().next("div.infos").slideToggle('normal');
  });
  var src = '';
  $("img.rollover")
  .hover(
    function () {
      src = $(this).attr('src');
      $(this).attr('src', src.substr(0, src.length - 4) + '_ro.jpg');
    },
    function () {
      $(this).attr('src', src);
    }
  )
  .each(
    function()
    {
      source = $(this).attr('src');
      image = new Image();
      image.src = source.substr(0, source.length - 4) + '_ro.jpg';
    }
  )

});
