/*var currentLi = 1;

var scrollTimed = function()
{
	var lengthLi = jQuery(".actu ul li").length;
	jQuery(".actu").scrollTo(jQuery(".actu li:eq("+currentLi+")"), 600);
	
	currentLi++;
	
	if (currentLi >= lengthLi)
		currentLi = 0;
}*/

jQuery(document).ready(function()
{
	jQuery("#menu .ssmenu").css('display', 'none');
	
	jQuery("#menu .nav1>li").hover(function()
	{
		jQuery(this).children(".ssmenu").slideDown(400);
	},
	function()
	{
		jQuery(this).children(".ssmenu").stop(true, true).slideUp();
	});
	
	/*if (jQuery(".actu ul li").length > 0)
	{
		var timer=setInterval("scrollTimed()", 2000);
		
		jQuery(".actu")
			.mouseover(function(){clearInterval(timer);})
			.mouseout(function(){timer=setInterval("scrollTimed()", 2000);});
	}
        $liFooter = jQuery("#menu-footer ul li:first");
        $liFooter.each(function() {
            jQuery(this).attr("class", jQuery(this).attr("class") + " first");
        });*/
});


