
$(document).ready(function(){
   $( '#menu_home > .js_actived > ul > li:not([class*="selected"])').hover(
    function(){
			$(this).addClass('hover');
			$('#menu_home .selected .box_information_menu').hide();
    },
    function(){
			$(this).removeClass('hover');
			$('#menu_home .selected .box_information_menu').show();
    }
  );
});






