/*
 * THE portal
 * ============================================================
 * navigation.js
 *
 * [ Navigation js ]
 * ------------------------------------------------------------
*/

function highlightRegister()
{
    document.getElementById('register_fill').style.backgroundPosition = 'bottom';
    document.getElementById('register_left').style.backgroundPosition = 'bottom';
    document.getElementById('register_fill').style.color = '#ffffff';
}
function resetRegister()
{
    document.getElementById('register_fill').style.backgroundPosition = 'top';
    document.getElementById('register_left').style.backgroundPosition = 'top';
    document.getElementById('register_fill').style.color = '#dadada';
}

function highlightLogin()
{
    document.getElementById('login_fill').style.backgroundPosition = 'bottom';
    document.getElementById('login_right').style.backgroundPosition = 'bottom';
    document.getElementById('login_fill').style.color = '#ffffff';
}
function resetLogin()
{
    document.getElementById('login_fill').style.backgroundPosition = 'top';
    document.getElementById('login_right').style.backgroundPosition = 'top';
    document.getElementById('login_fill').style.color = '#dadada';
}

function displayLogin()
{
    document.getElementById('registerlogin').style.display = 'none';
    document.getElementById('login').style.display = 'block';
}
function hideLogin()
{
    document.getElementById('registerlogin').style.display = 'block';
    document.getElementById('login').style.display = 'none';
}

function startNewsName()
{
    document.getElementById('newsletter_name').style.fontStyle = 'normal';
    document.getElementById('newsletter_name').value = '';
}
function startNewsEmail()
{
    document.getElementById('newsletter_email').style.fontStyle = 'normal';
    document.getElementById('newsletter_email').value = '';
}

function highlightForum(idx)
{
	document.getElementById('forum_' + idx).style.border = '1px dashed #666666';
	document.getElementById('forum_' + idx).style.backgroundColor = '#dcdcdc';
}
function resetForum(idx)
{
	document.getElementById('forum_' + idx).style.border = '1px dashed #cbcbcb';
	document.getElementById('forum_' + idx).style.backgroundColor = '#cbcbcb';
}

function highlightNews(idx)
{
	document.getElementById('news_' + idx).style.border = '1px dashed #666666';
	document.getElementById('news_' + idx).style.backgroundColor = '#dcdcdc';
}
function resetNews(idx)
{
	document.getElementById('news_' + idx).style.border = '1px dashed #cbcbcb';
	document.getElementById('news_' + idx).style.backgroundColor = '#cbcbcb';
}
