function dropShadow()
{

	ids			= new Array();
	ids[0]	= "rbcSystemIdentifierLogo";
	ids[1]	= "rbcCompanySlogan";

	for ( i = 0; i < ids.length; i++ )
	{
		var el = document.getElementById(ids[i]);
		if ( el.parentNode.className == "image" || !el.firstChild )
			continue;
		el.style.top		= "1px";
		el.style.left	= "1px";
		var s = document.createElement("span");
		var n = document.createTextNode(el.firstChild.nodeValue);
		s.appendChild(n);
		el.appendChild(s);
		el.className = 'withShade';
	}
}

function changeBorder(el, frame)
{

	if ( frame == "on" )
		el.className = "photo hover";
	else
		el.className = "photo";

}

