$(function() {
$(".scroll_actu").jCarouselLite({
        vertical: true,
        visible: 1,
        auto:4000,
        speed:1000
    });
});


var obj = null;

function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');
	} //if
} //checkHover

$(document).ready(function() {
	$('#nav > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} //if

		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
});

$(document).ready(function(){
	$(".demo_flash").colorbox({width:"500px", height:"600px", iframe:true});
});
