// JavaScript for the Product Category Pages

$('.categoryImage img').each(function() {
    if ($(this).attr('src') == 'http://store.hendersonslineup.com/' || $(this).attr('src') == 'http://store.hendersonslineup.com/Images/System/NoImageAvailable.gif') {
        $(this).parent().hide();
    }
});