/**
 * Méthode de survol des icônes
 */
$(function() {
	
	$("ul.icon-list li").hover(function(){
		
		if ($(this).children("div").children(".drop-down-content").has("ul").length)
		{
			$(this).children("a").addClass("icon-hover");
			$(this).children("div").show();
		}
		
	}, function(){

		$(this).children("div").hide();
		$(this).children("a").removeClass("icon-hover");		
		
	});
	
});
