$(document).ready(function () {

	//Append a div with hover class to all the LI
	$('#header li').append('<div class="hover"><\/div>');


	$('#header li').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
			$(this).children('div').fadeIn('1000');	
		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		
			$(this).children('div').fadeOut('1000');	
		
	}).click (function () {
	
		//Add selected class if user clicked on it
		$(this).addClass('selected');
		
	});
	
	$("#xdef").tagcloud({type:"list",sizemin:10,sizemax:30,height:150,colormax:"7D7D7D",colormin:"cccccc"}).find("li").tsort();

	$("#openclose").click(function(){
		$("#actualite").toggle("slide");
	});
});

