//Shadow maker
//Code - Frank Gasking
//Purpose - Give a H2 tag a ID of "shadow"
//Ensure these styles exist in your style sheet...
//
// #shadow { 
//	position: relative; 
//	left: 0px; 
//	top: 0px; 
//	color: black; }
//
//
//.text { position: absolute; 
//		left: -2px; 
//		top: -2px; 
//		color: black;} 
//



var text, content;
content = document.getElementById('shadow').innerHTML;
text = content + "<font color=\"FFFFFF\" class=\"text\">" + content + "</font>";


//Finally set the text and we are done.
document.getElementById('shadow').innerHTML = text;
document.getElementById('shadow').style.color = "#DDDDDD";
