//Shadow maker
//Code - Frank Gasking
//Purpose - Give a H2 tag a ID of "shadow"
//Ensure these styles exist in your style sheet...
//
var text, content;
content = document.getElementById('shadowmain').innerHTML;
text = content + "<font color=\"E9E9E9\" class=\"text2\">" + content + "</font>";


//Finally set the text and we are done.
document.getElementById('shadowmain').innerHTML = text;
document.getElementById('shadowmain').style.color = "#E9E9E9";
