//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('topHead').innerHTML;
text = content + "<font color=\"FFFFFF\" class=\"text\">" + content + "</font>";


//Finally set the text and we are done.
document.getElementById('topHead').innerHTML = text;
document.getElementById('topHead').style.color = "#C5D3FA";