<!-- hide script from old browsers
// =======================================
// (C) 2003 www.javascriptmagic.tk
// http://www.mukhtar.tk
// 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 = "#FFFFFF"
var hotColor  = "#FF0000"
var warmColor  = "#CCCCCC"
var motionPix = "7"

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

var a='<style>'+
'a.InstantLink:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  
'a.InstantLink:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;}'+  
'a.InstantLink:hover {'+
'  color:'+hotColor+';'+
'  text-decoration:underline overline;'+
'  padding:0 0 0 '+motionPix+';'+
'  }'+
'a.InstantLink:active {'+
'  color:'+warmColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  

'</style>'
if (document.all || document.getElementById){
    document.write(a)
}
// end hiding script from old browsers -->
