﻿$(document).ready(function() {
    $(".itemlist li td:first-child:not(:has(img))").each(function(index) {
        $(this).hide();
    });
});
