﻿// JScript File
jQuery().ready(function() {
    //Delay checking of image for 250ms
    //until image is completely rendered.
    setTimeout("checkForImages()",500);    
});
function checkForImages(){
    var $children = jQuery(".drPhoto").children();    
    $children.each(function (i) {
        if (typeof $children[i].naturalWidth != 'undefined' && $children[i].naturalWidth == 0)
        {
           jQuery(".drPhoto").hide();
        };
        //Check condition under windows ie
        if ($children[i].fileSize == -1)
        {
            jQuery(".drPhoto").hide();
        };
    });
}
