// this is for the FAQ and Troubleshooting sections.  detects and images in the answers and adds "thickbox" class if not there already

$(document).ready(function(){ 
 var supportLinkArray = $("div.supportBlock ol.answers a");
 
 for (i = 0; i < supportLinkArray.length; i++) {
    if(supportLinkArray[i].href.match(/\.(jpg|gif|png|bmp)$/)) {
        if (supportLinkArray[i].className.indexOf("thickbox") <= -1) supportLinkArray[i].className = supportLinkArray[i].className + " thickbox";
    }
 }
});