<!--
/* includes code created by Juxtaprose - http://www.juxtaprose.com
(c) 2004. Licensed for use under
Creative Commons Attribution-NonCommercial-ShareAlike 2.0
http://creativecommons.org/licenses/by-nc-sa/2.0/
Please preserve this notice as a means of attribution. Thanks!
*/

var p=document.getElementsByTagName('div');
var pLen = p.length;
for (var i=0;i<pLen;i++)
{
	var a = p[i].attributes;
	var aLen = a.length;
	for (var j=0;j<aLen;j++)
	{
		if (a[j].name=='class' && a[j].value=='malanote')
		{
			p[i].onmouseover=HighlightCover;
//			p[i].onmouseout=pRegular;
//			p[i].onclick=pHighlight;
		}
	}

}

var visibleDiv = '';
var highlightDiv = '';
Malaroll('murtipendant'); // make this div visible on load

function HighlightCover()
{
	Highlight(this);
}

function Highlight(onobject)
{
	Regular();

	highlightDiv = onobject.id;
	onobject.style.margin='0px';
	onobject.style.border='1px dotted #A5223D';

	visibleDiv = onobject.id+'_info';	
	document.getElementById(visibleDiv).style.visibility='visible';
}

function Regular()
{
	if (highlightDiv != '')
	{
		document.getElementById(highlightDiv).style.border='none';
		document.getElementById(highlightDiv).style.margin='1px';		
		highlightDiv = '';
	}
	if (visibleDiv != '')
	{
		document.getElementById(visibleDiv).style.visibility='hidden';
		visibleDiv = '';
	}
}

function Malaroll(onword)
{
	 Highlight(document.getElementById(onword));	
}

//-->