<!--
  dojo.require("dojox.image.Lightbox");
  dojo.require("dojo.parser");





  dojo.require("dojox.widget.FisheyeLite");
  
  dojo.addOnLoad(function(){      
    dojo.query("img.imgPort").forEach(function(n){
      // all the images need a width and a height (well, not need,
      // but to scale you do)
      new dojox.widget.FisheyeLite({
        properties: {
          height:1.75,
          width:1.75
        }
      },n);
    });
  });

//-->
