The image toolbar shipped disabled by default in the more recent versions of IE 6 prior to its being replaced in new installations by IE 7, and is completely absent from IE 7. Here is where in frog.js the main image tag is constructed:
Code:
var mainImage = document.createElement("img");
mainImage.setAttribute('id','FrogJSImage');
mainImage.style.display = 'none';
mainContainer.appendChild(mainImage);
So, this should work:
Code:
var mainImage = document.createElement("img");
mainImage.setAttribute('id','FrogJSImage');
mainImage.setAttribute('galleryimg','no',0);
mainImage.style.display = 'none';
mainContainer.appendChild(mainImage);
There really isn't much reason to do so though, and the possibility that it will hurt some browsers that don't recognize it.
Bookmarks