/***** AFFICHAGE DES PHOTOS AU ROLL OVER DE LA SOURIE *****/
function affichePhoto(photo_id) {
	$('zoom').innerHTML = '<img src="photos/'+photo_id+'.jpg" alt="" />';
}
  

/***** AJOUT D'UN ARTICLE AU PANIER *****/
function ajoutPanier(produit_id) {
	var taille = $F('p_Taille');
	var quantite = $F('p_Quantite');
	if(quantite == '') quantite = '1';
	
	new Ajax.Updater (
		'nombre',
		'include/ajax_ajout_panier.php',
		{
			method: 'post',
			evalScripts: true,
			parameters: {produit_id: produit_id,taille: taille, quantite: quantite}
		}			  
	);
}


/***** FENETRE DES TAILLES *****/
function taille () {
	Dialog.alert({url: "include/taille.php", options: {method: 'get'}},  
		{className: "bluelighting", width:550, okLabel: "Fermer", 
		showEffectOptions: {duration: 0.7}, hideEffectOptions: {duration: 0.3}});	
}
