﻿/* Purpose: For rollover button events on US map */

function rollover(divId, divHeight)
{
	document.getElementById(divId).style.backgroundPosition = "0 -" + divHeight +  "px";
}

function rollout(divId)
{
	document.getElementById(divId).style.backgroundPosition = "0 0";
}
