jQuery(function ($) {
	
	$('#cycle').cycle({
    fx:     'fade',
    speed:   800,
    timeout: 3000,
    next:   '#cycle_next',
    prev:   '#cycle_prev',
    pause:   1
    });
    
    //$("<a href='#' id='cycle_prev' class='cl'>précédent</a>").insertBefore("#cycle");
	//$("<a href='#' id='cycle_next' class='cl'>suivant</a>").insertBefore("#cycle");
					
	$(".cl").hover(
      function () {
      	$(this).animate({opacity : '1'});
      	//$(this).css("opacity", 1);
      }, 
      function () {

      	$(this).animate({opacity : '0.5'});
      	//$(this).css("opacity", 0.5);
      }
    ).css("opacity", 0.5);	
});

