// JavaScript Document

$(document).ready(function(){	

	$('.agence').mouseenter(function(){
		$(this).find('span').fadeIn();	
	}).mouseleave(function(){
		$(this).find('span').fadeOut();		
	})
	
	$("#miniNews").carouFredSel({
		width :280,
		height : 120,
		circular :true,
		infinite :true,
		direction : "left",
		items :{
			visible:1,
			width:"variable",
			height:"variable"
		},
		scroll : {
			effect			: "easeOutBounce",
			duration		: 1000,							
			pauseOnHover	: true
		},
		prev : {	
			button	: "#news_prev",
			key		: "left"
		},
		next : { 
			button	: "#news_next",
			key		: "right"
		}		
	});	
	
	
		
})
