$(function() {
    $('#news-catalog .listTopItem li, #storeInfo .listTopItem li')
    .each(function() {
        var url = ( $('a', this)[0] ) ? $('a', this)[0].href : '';
        var cls = ( $('a', this)[0] ) ? $('a', this)[0].className : '';
        $(this).click(function(e) {
            if( cls !== 'external' ) {
                ( url ) ? location.href = url : '';
            } else {
                e.preventDefault();
                window.open(url);
            }
        });
    })
    .hover(
        function() {
            $(this).addClass('hover')
        },
        function() {
            $(this).removeClass('hover');
        }
    );
});

