


function init_js(page)  {

  switch(page)  {
    case "accueil" :
      //$('#sifr_prod').sifr({font: 'font/letterb_ligne', width: 350, offsetTop: -2}); 
      
      $("#liste_news").hide();
      $("a#show_news").click(function() {
      
        if( $(this).text() == "Afficher" )
          $(this).text( "Masquer" );
        else  
          $(this).text( "Afficher" );
    
        $("#liste_news").toggle("fast");
      });
    break;
    
    case "lefilm":
      //$('#sifr_prod').sifr({font: 'font/letterb_ligne', width: 350, offsetTop: -2}); 
    break;
    
    case "projections" :
      $("h5.region").next("div").hide();
     /* 
      alert($(window.location.hash)) ;
        $(window.location.hash).show().prev().children("a").toggleClass("flb");
       */
      $("h5.region a").click(function() {
      
          $(this).toggleClass("flb");
          $(this).parent().next("div").toggle();
      });
    break;
    
    case "presse" :
    
    break;
    
    case "revue_presse" :
      $("a.box_photo").fancybox({ 'zoomSpeedIn': 10, 'zoomSpeedOut': 10, 'overlayShow': true });
    break;
    
    case "contact" :
    
    break;
  }
}