// Function to tag the first paragraph - ref: http://www.thescripts.com/forum/thread511577.html

function tagFirstParagraph() {

    var pars = document.getElementsByTagName("P");
        
        pars[ 0 ].id = "firstparagraph";


} //end go

