google.setOnLoadCallback(function() {
	$('.conceptBox, .ActusBox, ').css({cursor:'pointer'}).click( function() { 
	  window.location.href = $(this).find('a').attr('href');
	  return false;
	  } );
	// 
	$("#leftbar .first_level li").hover(function() {
		  $(this).children("ul").animate({opacity: "show", height:"100%"}, "slow");
			$(this).addClass("nav_hover");
		}, function() {
		  $(this).children("ul").animate({opacity: "hide", height:"0"}, "slow");
			$(this).removeClass("nav_hover");
		});
		
		
		
		$("#banner #not_nested .first_level li").hover(function() {
			  $(this).children("ul").animate({opacity: "show"}, "slow");
				$(this).addClass("nav_hover");
			}, function() {
			  $(this).children("ul").animate({opacity: "hide"}, "slow");
				$(this).removeClass("nav_hover");
			});
	//$("#banner #not_nested .first_level .rubrique2010 .second_level li ul").animate({opacity: "hide"}, 0);
	$(".accueil #leftbar .first_level li ul").animate({opacity: "show"}, "slow");
	
	
});
