
jQuery.noConflict();
jQuery(document).ready(function($){

  $("#actualites").slideToggle(1000);

  
  $('#animationLeft').cycle({ 
    fx:      'custom', 
    cssBefore: {  
        left: 115,  
        top:  115,  
        width: 0,  
        height: 0,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        opacity: 0  
    }, 
    animIn: {  
        left: 0,  
        top: 0,  
        width: 200,  
        height: 200  
    }, 
    cssAfter: {  
        zIndex: 0 
    }, 
    delay: -2000 
});
  $('#animationRight').cycle({ 
    fx:      'custom', 
    cssBefore: {  
        left: 115,  
        top:  115,  
        width: 0,  
        height: 0,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        opacity: 0  
    }, 
    animIn: {  
        left: 0,  
        top: 0,  
        width: 200,  
        height: 200  
    }, 
    cssAfter: {  
        zIndex: 0 
    }, 
    delay: -2000 
});
  
  $(".bt_actualites").hover(function(){
		$("#actualites").slideToggle(1000);
		return false;
	});
  

});

