//  Functions:
//  ---------------------------------
//  servicemenuOn(rowID)
//  servicemenuOff(rowID)



var supported = (document.getElementById || document.all);

if (supported) {
	document.write("<STYLE TYPE='text/css'>");
	document.write(".para {display: none}");
	document.write("</STYLE>");

	var max = 7;
	var shown = new Array();
	for (var i=1;i<=max;i++)
	{
		shown[i+1] = false;
	}
}



function servicemenuOn(rowID){
  if (supported) {
    document.getElementById('servicemenu_' + rowID).style.backgroundColor = '#B19E57';
    document.getElementById('servicemenu_img_' + rowID).src = '/i/elements/arrow_select.gif';
  }
}


function servicemenuOff(rowID){
  if (supported) {
    document.getElementById('servicemenu_' + rowID).style.backgroundColor = '';
    document.getElementById('servicemenu_img_' + rowID).src = '/i/elements/arrow.gif';
  }
}