// JavaScript Document

$(document).ready( function(){
	if ($("#actualites").length) {
		$("#actualites .ctn .scroll").jHeadline ({intervalTime:4000});
	}
	
	$(".etablissement li").hover (
			function() { $(this).addClass ('focus'); }, 
			function() { $(this).removeClass ('focus'); } 
		).click (
			function () { 
				window.open ($(this).find ('a').attr('href'), '_self'); 
			}
		);
	$('#diaporama ul').animatedinnerfade({
		speed: 1000,
		timeout: 3000,
		containerheight: '320px',
		containerwidth: '980px',
		animationSpeed: 5000,
		animationtype: 'fade',
		bgFrame: 'none',
		controlBox: 'none',
		displayTitle: 'none'
	});	
} ); 

