     dojo.require("dojox.widget.FisheyeLite");
     dojo.require("dojo.parser");
     dojo.addOnLoad(function(){      
         dojo.query("img.imgBounce").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.2,
	        width:1.2
	      }
	    },n);
         });
     });


     dojo.require("dojox.widget.FisheyeLite");
     dojo.require("dojo.parser");
     dojo.addOnLoad(function(){      
         dojo.query("img.imgBounce1").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.2,
	        width:1.2
	      }
	    },n);
         });
     });
