jQuery(document).ready(function () {

    if (jQuery('.item58 ul li').length % 2 > 0) {
        jQuery('.item58 ul').append("<li><a href=''><span></span></a></li>");
    }

    jQuery(".item58,.item57,.item97,.item84").hover(
		  function () {
		      jQuery(this).children('ul').css('display', 'block');
		  },
		  function () {
		      jQuery(this).children('ul').css('display', 'none');
		  }
		);
});
