// JavaScript Document


$(document).ready(function(){
						   
						   
						   $("#slideshow img").css("position","absolute");
						   $("#slideshow").css("position","relative");
						   $("#slideshow img:gt(0)").hide();
						   $("#slideshow").append("<p><a href=\"#\" class=\"prev\"></a>  <a href=\"#\" class=\"next\"></a> </p>");
						   $("#slideshow p").css("padding-top","350px");
						   $("#slideshow a.next").click(function(){
																 var $image_suivante = $("#slideshow img:visible").next("img");
																 if($image_suivante.length<1) $image_suivante = $("#slideshow img:first")
																 $("#slideshow img:visible").fadeOut();
																 $image_suivante.fadeIn();
																 return false;
														 });
						   						   $("#slideshow a.prev").click(function(){
																 var $image_precedente = $("#slideshow img:visible").prev("img");
																 if($image_precedente.length<1) $image_precedente = $("#slideshow img:last")
																 $("#slideshow img:visible").fadeOut();
																 $image_precedente.fadeIn();
																 return false;

						   
						   });
												   
												   //auto
												   function auto(){
													   $("#slideshow a.next").trigger("click");
													   
												   }
												   setInterval(auto,2000);
												  

//di	ap




});



