// JavaScript Document
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
function zommer(idimg,ope){ 
		 var move = -12;
		 var widthIni 	= 97;
		 var heightIni 	= 150;
		 if(ope==1){
         width =  120;  
         height = 185; 
         $('#'+idimg).animate({'width':width, 'height':height, 'top':0, 'left':move}, {duration:100});}else if(ope==2){  
         $('#'+idimg).animate({'width':widthIni, 'height':heightIni, 'top':0, 'left':0}, {duration:100});
			 }
	}
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
    $(window).load(function() {
        $('#slider , #slider2').nivoSlider();
    });
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
//-------------------------------------------
	function chambreHaute(checboxId, idSpan){
	if(document.getElementById(checboxId).checked){
		 $('#'+idSpan).show(200); 
		  }else{$('#'+idSpan).hide(200);}
		}	
