
// added by les



 window.addEvent('domready', function() {
    	          $$('img').each(function(p) {
				  // its a cms image
				  	pd=p.parentNode;
				  	if (pd.tagName=='DIV' && pd.id=='main') { 
				  		var u="url('"+p.src+"')";
				  	 	pd.style.backgroundImage=u
				  	 	pd.style.backgroundPosition="bottom right";
				  	 	pd.style.backgroundRepeat="no-repeat";
						p.style.display='none';
					}
					
		  		  });
		  });	


