function rollIn(el)
{	
  el.initstyle = el.style.cssText;
  el.style.cssText = "color : #000080; text-decoration : underline";
  el.style.cursor = "hand";
}

function rollOut(el)
{
  el.style.cssText = el.initstyle;
}