<!-- Slide Show Cuisines
          thisImg1 = 1
          imgCt1 = 23
		
          function newSlide1(direction) {
			
               if (document.images) {
                    thisImg1 = thisImg1 + direction
                    if (thisImg1 < 1) {
				thisImg1 = imgCt1
                    }
                    if (thisImg1 > imgCt1) {
				thisImg1=1
                   }
                    document.slide_cuisines.src = "images/cuisines-show-room" + thisImg1 + ".jpg"
	              }
          }

<!-- Slide Show Salles de bains
	
          thisImg2 = 1
          imgCt2 = 15
		
          function newSlide2(direction) {
			
               if (document.images) {
                    thisImg2 = thisImg2 + direction
                    if (thisImg2 < 1) {
				thisImg2 = imgCt2
                    }
                    if (thisImg2 > imgCt2) {
				thisImg2=1
                   }
                    document.slide_sdb.src = "images/salles-de-bains-show-room" + thisImg2 + ".jpg"
	              }
          }

// -->