Event.observe(document, 'dom:loaded', function(){
	var title = $$('.spotlight_content_area')[0].down('h1').innerHTML || null;
	$$('.spotlight_content_area a').filter( function(a){
		return /\.(jpe?g|gif|png)$/.test(a.readAttribute('href'));
	}).each(function(a){
		a.writeAttribute('rel', 'spotlight[' + title + ']');
		myLightWindow.createWindow(a);
	});
});

