// JavaScript Document

var root = '/public/components/Links/images/';

function switchIt(key) {
	
	var obj = $(key);
	var bObj = $('bottom_'+ key);
	var aObj = $('arrow_'+ key);
	
	if(obj.style.display == 'block') {
		obj.style.display = 'none';
		bObj.style.display = 'none';
		aObj.src = root +'arrow_'+ key +'_over.gif';
	}
	else {
		obj.style.display = 'block';
		bObj.style.display = 'block';		
		aObj.src = root +'arrow_'+ key +'.gif';		
	}
	
}

initMenu = function initMenuNow(key) {
	switchIt(key);
}