if (document.getElementById('translucentbg')){
		var oe = document.getElementById('translucentbg');
                // Set transparency to 50%
                oe.setAttribute("style", "opacity:0.2;")
		if (oe.style.setAttribute) //For IE
		oe.style.setAttribute("filter", "alpha(opacity=20);")
		oe.style.setAttribute("style", "-moz-opacity:0.2;")
		
	}