/*  moved to rrs.js   
var currentEntry;

function expandEntry(uid){
	el = document.getElementById('entry' + uid);
	if(currentEntry)currentEntry.style.display = 'none';
	currentEntry = el;
	el.style.display = '';
	return false;
}

*/

function $(id){
	return document.getElementById(id);
}

function clickShowText(text){
	$('jscontent').innerHTML = text;
}

function $(i){
	return document.getElementById(i);
}

function hoverInDe(id){
	$('layerImageDe').src = extensionPath + 'res/images/imagemap/' + id + '.gif';
}

function hoverOutDe(id){
	$('layerImageDe').src = extensionPath + 'res/images/imagemap/blank-54.gif';
}

function hoverInAt(id){
	$('layerImageAt').src = extensionPath + 'res/images/imagemap/' + id + '.gif';
}

function hoverOutAt(id){
	$('layerImageAt').src = extensionPath + 'res/images/imagemap/blank-13.gif';
}


