window.addEvent ("domready", function ()
{
	// DEFILEMENT DES PRODUITS LIES
	if ($('produits_lies_suivants')) {
		produits_liesSlideShow = new SlideShow ($('conteneur_produits_lies'), {
			transition: 'pushLeft',
			duration: 400, 
			delay: 100,
			autoplay: false,
			slides: $('conteneur_produits_lies').getElements ('ul')
		});
		$('produits_lies_suivants').addEvent ('click', function(e) {
			e.stop();
			produits_liesSlideShow.show (produits_liesSlideShow.slides.indexOf (produits_liesSlideShow.nextSlide()), {transition: 'pushLeft', duration: 400});
		});
	}
	// DEPLOIEMENT DE L'ENSEMBLE DES TEMOIGNAGES
	if ($('lien_trois_temoignages')) {
		oConfig = {liens:"#suite_temoignages", cibles:"#suite_temoignage"};
		MyAccordion = new MyAccordion (oConfig);
		$('lien_trois_temoignages').setStyle ('display', 'none');
		$('lien_suite_temoignages').addEvent('click', function() {										   
				$('lien_suite_temoignages').setStyle ('display', 'none');
				$('lien_trois_temoignages').setStyle ('display', 'inline');
		});
		$('lien_trois_temoignages').addEvent('click', function() {	
				$('lien_suite_temoignages').setStyle ('display', 'inline');
				$('lien_trois_temoignages').setStyle ('display', 'none');
		});
	}
	if ($('liste_produits_cata')) {
		var blocs_produit = $$('#liste_produits_cata .bloc_produit');
		blocs_produit.each (function (item, index) {
			item.addEvent('mouseenter', function(){
				this.setStyle('border', '1px solid #d6e22e');
			});
			item.addEvent('mouseleave', function(){
				this.setStyle('border', '1px dotted #cccccc');
			});
		});
	}
	var menus_refs = $$('.refs_produit form');
	menus_refs.each (function (item, index) {
		item.getElement ('select').addEvent('change', function(){
			item.submit ();
		});
	});
	var boutons_caddie = $$('.caddie_ok');
	boutons_caddie.each (function (item, index) {
		var num = clignotement.periodical(1500, this, item.getElement('.date_dispo'));
		if (item.getElement ('.date_dispo')) {
			item.addEvent('mouseenter', function(){
				this.getElement ('.date_dispo').fade (0);
				clearInterval(num);
			});
			item.addEvent('mouseleave', function(){
				this.getElement ('.date_dispo').fade (1);
				num = clignotement.periodical(1500, this, item.getElement('.date_dispo'));
			});
		}
		if (item.getElement ('form')) {
			item.getElement ('form').addEvent('submit', function(e){
				e.stop ();
				sendForm (this);
			});
		}
	});
	if ($('navigation_produits')) {
		$('navigation_produits').getElement ('select').addEvent('change', function(){
			$('navigation_produits').getElement ('form').submit ();
		});
	}
	/*
	if ($('liste_produits_cata')) {
		$('liste_produits_cata').getElements('div.refs_produit ul li').fade('hide');
		$('liste_produits_cata').getElements('div.refs_produit li.selected').fade('in');
	}*/
});
function sendForm (element) {
	element.set ('send', {
		url: '/ajax/panier_100.html', 
		evalScripts: true,
		onSuccess: function (response) {
			var object = new Object ();
			object.w = 560;
			object.h = 215;
			object.type = 'html';
			object.titrePopup = titrePopup;
			object.content = response;
			new createPopup (JSON.encode (object));
			myRequest = new Request ({
				url: '/redirect.php', 
				data: 'p=107', 
				method: 'get', 
				onSuccess: function (html) {
					$('liste_panier').set ('html', html);
				}
			});
			myRequest.send();
		}
	});
	element.send ();
}
