$(document).ready(function () {

    $('ul li.searchItem ').hover(function () {
        //$('ul li.searchItem div.searchItem_show').hide();
        $(this).find('div.searchItem_show').show();
    }, function () {
        $(this).find('div.searchItem_show').hide();
    });


    $('.menu ul li').hover(function () {
        $(this).find('ul').show();
    }, function () {
        $(this).find('ul').hide();
    });

   // $('.ingress_shortnews img').each(function () {
    //    $(this).css('width','100');
   //     if ($(this).attr('src').toString() == '/ShowFile.ashx?FileInstanceId=00000000-0000-0000-0000-000000000000') {
   //         $(this).hide();
    //    }
  //  });

    $('.ingress_shortnews a').each(function () {
        if ($(this).children().length < 1) {
            $(this).parent().css('display', 'none');
        }
    });
});

function toggleMenu(item) {
    $(item).parent().find('ul').slideToggle();
}


