	var confObject = {
		iconMinSide : 75,
		iconMaxSide : 120,
		distAttDock : 70, 
		coefAttDock : 3,	
		veloOutDock : 600, 
		valign: 'bottom'
	};
	
	var image1 = $('<img />').attr('src', 'http://sites.florbraz.com/v3/img/info_120.png');
	image1.appendTo('.bottom');
	var image2 = $('<img />').attr('src', 'http://sites.florbraz.com/v3/img/home_120.png');
	image1.appendTo('.bottom');
	var image2 = $('<img />').attr('src', 'http://sites.florbraz.com/v3/img/web_120.png');
	image1.appendTo('.bottom');
	
	jQuery(function() {
 		jQuery("#bar").addDockEffect(confObject);
	});
	
	$(document).ready(function()
{
	$('a.interruptor').click(function()
	{
		$('body').fadeOut("slow", function()
		{
			if(document.body.className == 'light-on')
			{
				$('body').removeClass('light-on');
				$('body').addClass('light-off');
			}
			else
			{
				$('body').removeClass('light-off');
				$('body').addClass('light-on');
			}
		});
		$('body').fadeIn("slow");
	});
});

$(document).ready(function() {
	$().piroBox({
			my_speed: 600, //animation speed
			bg_alpha: 0.5, //background opacity
			radius: 4, //caption rounded corner
			scrollImage : false, // true == image follows the page, false == image remains in the same open position
			pirobox_next : 'piro_next', // Nav buttons -> piro_next == inside piroBox , piro_next_out == outside piroBox
			pirobox_prev : 'piro_prev',// Nav buttons -> piro_prev == inside piroBox , piro_prev_out == outside piroBox
			close_all : '.piro_close',// add class .piro_overlay(with comma)if you want overlay click close piroBox
			slideShow : 'slideshow', // just delete slideshow between '' if you don't want it.
			slideSpeed : 4 //slideshow duration in seconds(3 to 6 Recommended)
	});
});

			$(document).ready(function(){//on attend que la page soit chargée
        //on donne l'id de la liste visée, et on lui donne ses paramètres
        $("#pet-introduction").wslide({
                width: 940,
                height: 310,
				horiz: true,
				duration: 2000,
				effect: 'easeOutBounce'
        });
        //si vous avez d'autre listes, placez leur code d'initialisation ici à la suite ....
        //$("#autre_liste").wslide({ ...
});


