/* Syntax: setOpacity("targetElement", value (0-100))
Will change the CSS opacity property of the specified object */

function setOpacity(targetElement, value)
	{
		(targetElement.style.MozOpacity!=null) ? targetElement.style.MozOpacity=(value/100) : null;
		(targetElement.style.opacity!=null) ? targetElement.style.opacity=(value/100) : null;
		(targetElement.style.filter!=null) ? targetElement.style.filter = "alpha(opacity="+value+")" : null;
	}