// JavaScript Document
function change_image_fond(page) 
{
  if ( page=='index')
  {
    document.body.style.backgroundImage = 'url(images/fond.png)';
  }
  else
  {
  document.body.style.backgroundImage = 'url(images/'+page+'/fond.png)';
  }
}
