function up_quantite(max_quantite) {
	var quantite = parseInt(document.getElementById("ajouter_quantite").value);
	if(quantite<max_quantite) {
		document.getElementById("ajouter_quantite").value = quantite + 1;
	}		
}

function down_quantite() {
	var quantite = parseInt(document.getElementById("ajouter_quantite").value);
	if(quantite>0) {
		document.getElementById("ajouter_quantite").value = quantite - 1;
	}
}

if (document.images){
		img_voir_details_on= new Image(84,23);
		img_voir_details_on.src="images/bouton_voir_details_roll.png"; 
		img_ajouter_panier_on= new Image(118,23);
		img_ajouter_panier_on.src="images/bouton_ajouter_panier_roll.png";

		img_voir_details_off= new Image(84,23);
		img_voir_details_off.src="images/bouton_voir_details.png";
		img_ajouter_panier_off= new Image(118,23);
		img_ajouter_panier_off.src="images/bouton_ajouter_panier.png";				 
}

function lightup(imgId,imgType){				
	if (document.images){  
	  document.getElementById(imgId).src= eval(imgType + "_on.src");
	}
}

function turnoff(imgId,imgType){
	if (document.images){					
		document.getElementById(imgId).src= eval(imgType + "_off.src");
	}
}
