//
// Expanding Items
//
function showMore(theid)
{
	var el = document.getElementById(theid);
	if (el.style.display == 'none')
	{
		el.style.display = 'block';
		el = document.getElementById('more' + theid);

	        el.innerHTML = '<img border="0" src="/images/minus.gif" width="11" height="14">';
	} else {
		el.style.display = 'none';
		el = document.getElementById('more' + theid);
		el.innerHTML = '<img border="0" src="/images/plus.gif" width="11" height="14u">';
	}
}

//
// Rollover
//
function rollMe(name,over)
{
  if(window.document.images) 
  {
    if (over)
      window.document.images['rollLocation'].src = "/images/solutionRollOvers/" + name + ".jpg";
    else
      window.document.images['rollLocation'].src = "/images/spacer.gif";
  }
}

//
// TD Color Rollover ON
//
function tdMouseOver (e) {
  e.bgColor = '#DFE9EC';
}

//
// TD Color Rollover OFF
//
function tdMouseOut (e) {
  e.bgColor = '#FFFFFF';
}


		//
		// Table Color Rollover ON
		//
		function tableMouseOver (e) {
		  e.bgColor = '#FFDDDD';
		  e.style.cursor = 'hand';
		}

		//
		// Table Color Rollover OFF
		//
		function tableMouseOut (e) {
		  e.bgColor = '#FFFFFF';
		  e.style.cursor = 'default';
		}
