/* Document   : accueil
   Created on : 11 avr. 2011, 16:45:40
   Author     : CuanyJ @eikonEMF
   Description: TODO complete this description
*/

$(document).ready(function(){

   $('.slideshow').cycle({
		fx: 'scrollRight', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
                easing : "backinout",
                timeout : 10000,
                speed: 900,
                next:   '#next',
                prev:   '#prev'
	});


    $("#Slideshow_BtnNext").hover(
        function () {
           this.src = "./img/FLECHE_D_hover.png";
        },
        function () {
            this.src = "./img/fleche_d_normal.png";
        });


     $("#Slideshow_BtnBefore").hover(
        function () {
           this.src = "./img/FLECHE_G_hover.png";
        },
        function () {
            this.src = "./img/fleche_g_normal.png";
        });

})

