			
			
			dojo.addOnLoad(function(){
			  // every element in the page with the class "blueButton" assigned
			  dojo.query("A.anchorEditor IMG").forEach(function(node, index, arr){
					console.debug(node.innerHTML);
					if (dojo.hasAttr(node, "lightbox_anchors"))  {
						var magnifyingGlass = document.createElement("img");
						magnifyingGlass.setAttribute("class","magnifyingGlass");
						magnifyingGlass.setAttribute("src","/Projects/c2c/cda/images/channel1171/lupe.png");
						node.parentNode.appendChild(magnifyingGlass);		
						dojo.style(magnifyingGlass, "position", "relative"); 
						dojo.style(magnifyingGlass, "right", "18px"); 
						dojo.style(magnifyingGlass, "top", "-" + (node.height - 18) + "px"); 
						dojo.style(magnifyingGlass, "border", "0px"); 
					}
				
				});
			});
			

