$(document).ready(function(){
 // activMenu();
  $(".galery a.lb").lightBox();
    changeBackGround();
  /*$('#contenuIndex').css({
				backgroundColor:	'#686868',
				opacity:			0.8
			})*/
});

function changeBackGround(){
  var pathname = location.pathname;
  var page     =  pathname.substr(1,location.pathname.indexOf(".php")-1);

  listePage   = new Array("","index","k-architecture","realisations","contact","news","projets","presse");
  var date = new Date();
  var sec = date.getSeconds();
  var partie1 = sec.toString();
  if(partie1 < 10){
    var partie1 = Number(partie1) + 10;
    var partie1 = partie1.toString();
  }
    

  var index = partie1.substr(1,1);

  for(var i = 0;i < listePage.length; i++){
   
    if(listePage[i] == page){

      //$('body').css({'background' : 'url(../images/fonds/fond1.jpg) no-repeat left top','background-color' : '#686868'});
      $('body').css({'background' : 'url(../images/fonds/fond'+index+'.jpg) no-repeat left top','background-color' : '#686868'});
    }
            
  }
}




