// =======================================
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

// Set the coldColor for the link normal color
// Set the hotColor for the link mouseOver color
// Set the motionPix for how many pixels to move

var coldColor = "#FFCC99"
var hotColor  = "#666633"
var bckColor = "#D2D7B7"
var boldness = "bold"

// do not edit below this line
// ======================================

var a='<style>'+
'A.InstantLink:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.InstantLink:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.InstantLink:active {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  }'+  
'A.InstantLink:hover {'+
'  color:'+hotColor+';'+
'  font-weight:'+boldness+';'+
'  background-color:'+bckColor+';'+ 
'  }'+
'</style>'

if (document.all || document.getElementById){
    document.write(a)
}
