$(function() {
	var config = {
        over : function(){           
			$('.submenu', this).show();
		}, 
        timeout : 200, 
        out : function(){
			$('.submenu', this).hide();
        }
    };

	// Animazione sui credits
	$(".menuItem").hoverIntent(config);
});
