/**
 * Identify "div"s that I want to be transparent and mark them so.
 * rand.
 */
var Translucent = {
	translucentClass:'rTranslucent',
	// Find all the divs with the class of "Translucent"
	setTranslucent:function() {
		var transS = document.getElementsByTagName( 'div' );
		for( var i=0; i<transS.length; ++i ) {
			if( transS[i].className.indexOf( Translucent.translucentClass ) != -1 ) {
				transS[i].style.opacity = '0.80';	// once for Firefox
				transS[i].style.filter = 'alpha(opacity=80)';	// once for crap (IE)
			}
		}
	}
};

Events.addListener( window, 'load', Translucent.setTranslucent );

