// -------------------------------------------------------
// Index
//
// $Id: index.js,v 1.2 2009/01/24 11:53:45 steve Exp $
//
// -------------------------------------------------------

function init_index() {

    $('div.commentsLink').click( goToCommentsPage )
    $('div.commentsLink').mouseover(
        function() {
            $(this).addClass('commentsLink_Over')
        })
    $('div.commentsLink').mouseout(
        function() {
            $(this).removeClass('commentsLink_Over')
        })

    // Help Wanted Categories
    //
    addIndexWantedCategories()
}

function goToCommentsPage() {

    submitPage('comments.php') ;
}

