$(function(){

    $("a[target='_blank']").each(function(){
        var h = $(this).attr("href");
        if((h.indexOf("jpg")>-1)||(h.indexOf("png")>-1))
        {
            $(this).colorbox({maxHeight:"90%"});
         }
    });
});