$(document).ready(function ()
{
  lang = $("html").attr("lang");
  
  switch ($("body").attr("id"))
  {
    case 'index':
      swfobject.embedSWF("/assets/flash/index-"+lang+".swf", "flash-home", "990", "470", "8.0.0","expressInstall.swf", {}, {wmode:"transparent"}, {});

    case 'ou-nous-trouver':
      // this initialises the demo scollpanes on the page.
      $('#metropole-list, #guadeloupe-list').jScrollPane({scrollbarWidth:25, scrollbarMargin:10, dragMinHeight: 25, dragMaxHeight: 25, showArrows: 1, arrowSize: 10});
    
    case 'nos-caraibes':
    case 'demarche':
      $(".chapeau-flash").each(function()
      {
        img_title = $(this).attr("id").substring(8,30);
        swfobject.embedSWF("/assets/flash/photo_icono.swf", $(this).attr("id"), "450", "400", "8.0.0","expressInstall.swf", {url:"/assets/img/titles/"+img_title+"-"+lang+".png"}, {wmode:"transparent"}, {});
      });
    
    default:
      $(".title-flash").each(function()
      {
        img_title = $(this).attr("id").substring(6,20);
        swfobject.embedSWF("/assets/flash/photo_titre.swf", $(this).attr("id"), "800", "100", "8.0.0","expressInstall.swf", {url:"/assets/img/titles/"+img_title+"-"+lang+".png"}, {wmode:"transparent"}, {});
      });
  }

  if( $.browser.msie && (jQuery.browser.version < 7.0000) ) {
    $('img[src$=.png]').ifixpng();
  } 
});

