
dojo.addOnLoad(function(){
  // every element in the page with the class "blueButton" assigned
  dojo.query(".movieContainer img").forEach(function(node, index, arr){
		Reflection.add(node, { height: 0.16, opacity: 0.2 });
		dojo.connect(node, "onmouseover", function(){ Reflection.add(node, { height:0.16, opacity:0.35 }); });
		dojo.connect(node, "onmouseout", function(){ Reflection.add(node, {height:0.16, opacity:0.2}); });
  });
});
