jQuery(document).ready(function()
{
    jQuery('body.mainpage table a').each(function(i)
    {
        jQuery(this).parents('tr').find('img').each(function(i)
        {
            if (jQuery(this).parents('tr').find('a').size() == 0)
            {
                return;
            }
            
            jQuery(this).css('cursor', 'pointer');
            
            jQuery(this).click(function()
            {
                var href = jQuery(this).parents('tr').find('a').attr('href');
                
                if (!href)
                {
                    return;
                }
                
                window.location = href;
            });
        });
    });
});
