var indexe;
ntarray=new Array(); // Gather news entries
//ntarray[0]='Most Recent Forum Post : <a href=\"/discussion2.cfm/post/2528604#2528604\">General Discussion : Blade Mistress An Awsome F2P MMORPG</a>';
//ntarray[1]='Warhammer Online : Age of Reckoning : <a href=\"/gamelist.cfm/loadNews/12543\">Recruit-A-Friend Program</a>';

function moon(eId){
    var headline;
    var headline_title;
    var headline_content;
    for(var i= 0; i < 6; i++){
        headline = document.getElementById("headline_text_"+i);
        headline_title = document.getElementById("headline_text_title_"+i);
        headline_content = document.getElementById("headline_text_content_"+i);
        if(eId == i){
            headline_title.style.display = 'none';
            headline_content.style.display = '';
        }else{
            headline_title.style.display = '';
            headline_content.style.display = 'none';
        }
    }
    return;
}