//---------------------------------------------------------------------------------------------
// Mouse over effect for "learn more" link 
//---------------------------------------------------------------------------------------------
function mouseOut(id, dir, x, y, text_x, text_y)
{
	document.getElementById(id+"_img").src = "welcome_images/" + dir + "/"+id+".png";
	document.getElementById(id+"_text").style.color = "#000000";
	document.getElementById(id+"_text").style.fontWeight = "normal";
	if (dir == 'Classics')
	{
		document.getElementById(id).style.left = x;
		document.getElementById(id).style.top = y;
		document.getElementById(id+"_text").style.left = text_x;
		document.getElementById(id+"_text").style.top = text_y;
		resetZindex();
	}
}

function mouseOver(id, dir, x, y, text_x, text_y)
{
	document.getElementById(id+"_img").src = "welcome_images/" + dir + "/"+id+"_over.png"; 
	document.getElementById(id+"_text").style.color = "#0D4988";
	document.getElementById(id+"_text").style.fontWeight = "bold";
	if (dir == 'Classics')
	{
		if (id == 'classic_forms') document.getElementById(id).style.zIndex = 6000;
		if (id == 'classic_database') document.getElementById(id).style.zIndex = 6000;
		if (id == 'classic_reports') document.getElementById(id).style.zIndex = 6000;

		document.getElementById(id).style.left = x ;
		document.getElementById(id).style.top = y;
		document.getElementById(id+"_text").style.left = text_x;
		document.getElementById(id+"_text").style.top = text_y;
			
	}
}


//---------------------------------------------------------------------------------------------
// Set stack order of icons and labels in the graphics
//---------------------------------------------------------------------------------------------
function resetZindex() {
	document.getElementById('classic_as').style.zIndex = 100;
	document.getElementById('classic_portal').style.zIndex = 1000;
	document.getElementById('classic_forms').style.zIndex = 2000;
	document.getElementById('classic_reports').style.zIndex = 2000;
	document.getElementById('classic_database').style.zIndex = 3000;
	document.getElementById('classic_discover').style.zIndex = 4000;
}


function mouseClick(id)
{
	window.location.assign("main_"+id+".html");
}

//---------------------------------------------------------------------------------------------
// mouse over effect for "learm more" links on descriptive popups
//---------------------------------------------------------------------------------------------

function top_mouseOver(id)
{
	document.getElementById(id).className="learn_more_Org_over";
}
function top_mouseOut(id)
{
	document.getElementById(id).className="learn_more_Org";
}
