// JavaScript Document
function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);
  
  /* NULL CHECKS ADDED ON 17/06/2005 @ 1:31PM BY DEH */
  if ( td != null )
	td.className = "menuHover";
  if ( d != null )
	d.className = "menuHover";
}

function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);
  /* NULL CHECKS ADDED ON 17/06/2005 @ 1:31PM BY DEH */
  if ( td != null )
	td.className = "menuNormal";
  if ( d != null )
	d.className = "menuNormal";
}

if (navigator.appVersion.indexOf("MSIE")!=-1) {
document.write ("<style type=\"text/css\">")
document.write("div.menuHover{")
document.write("margin-left:-3px; position:absolute;left:0;")
document.write("}")
document.write("<\/style>")

} else {

document.write ("<style type=\"text/css\">")
document.write("div.menuHover{")
document.write("margin-left:0px;")
document.write("}")
document.write("<\/style>")

}