var top_menu_color = '#b0c1b4';
var top_menu_hover_color = '#9cac9f';


function showLoginForm() {
	var formdiv = document.getElementById('loginform_div');
	if (formdiv.style.display == 'inline') {
		formdiv.style.display =  'none';
	} else {
                var offset = window.getScrollTop();
                formdiv.style.bottom = '-'+ (offset-50) + 'px';
		formdiv.style.display = 'inline';
		document.getElementsByName('frodo')[0].focus();
	}
        return false;
}

/*
window.addEvent('domready',function() {
	$$('td.top_menu_link_cell').each(function(td) {
		if (td.getProperty('id') != 'top_menu_active_link_cell') {
			td.addEvent('mouseover', function() {
				this.setStyle('backgroundColor', top_menu_hover_color);
			});
			td.addEvent('mouseout', function() {
				this.setStyle('backgroundColor', top_menu_color);
			});
		}
	});
});
*/

