$(document).ready(function() {

    //hide date posted info
    $('.postInfo').hide();
	
    //change comment to story in submit button
    $('input.submitComment').attr('Value', 'Submit Your 7 Minute Pledge Comment');
	
    //enlarge the Add your own link and change comment to story
    //problem, the number is dynamically generated.  we cannot keep the number here if we want to change comment to story
    $('h3.commentsHead').html('7 Minute Pledge Comments (<a id="addCommentLink" style="font-size: 18px" href="#commentsForm">Add your own</a>)');
	
    //on 'add a new comment' heading change comment to story
    $('h3.addComment').text('Add a New 7 Minute Pledge Comment');
	
    //take off optional on the email field
    $('div.commentsForm p:eq(1) label').text('Your Email/URL:');
	
    //change comment to story on 'your comment' field
    $('div.commentsForm p:eq(2) label').text('Your 7 Minute Pledge Comment:');
	
    //reverse the order of the post comments
    $("dl").each(function() {
        var $this = $(this);
        var $dt = $this.find("dt");
        $dt.each(function() {
            var $this = $(this);
            $this.add($this.next()).wrapAll("<div class='myWrap'></div>");
        }); // end dt
    }); // end dl
    $(".myWrap").each(function() {
        $(this).prependTo($(this).parent());
    });
});