$('#widecontent .item').click(function(e){
    var a = $(this).find('a:first');
    if (a.get(0)) {
        var t = $(a).attr('target');
        if (t && (t.indexOf('blank') != -1 || t.indexOf('new') != -1)) {
            e.preventDefault();            
            window.open($(a).attr('href'))
        } else {            
           window.location = $(a).attr('href');
        }
        e.stopPropagation(); // stop event bubbling to parent
    }  
});

$('#widecontent .item').each(function(){
    var a = $(this).find('a:first').get(0);
    if (!a)
       $(this).css('cursor' , 'default');  
});


