Event.observe(window, 'load', function(e) {
	// remove noscript-stylesheet
	$('noscript_css').remove();
	
	// lightwindow: convert standard-conform rel attributes to "params"-attributes
	$$('.lightwindow').each(function(item) {
		if( item.readAttribute('rel') != null )
			item.writeAttribute('params', item.readAttribute('rel').replace(':', '='));
	});
});
