<!-- --><script>
$(function(){
    $(".lucky").bind("mouseenter", function(){
        $(this).data("text", $(this).text());
		$(this).html(colorized($(this).text()));
	}).bind("mouseleave", function(){
		$(this).html($(this).data("text"));
	});
})

var colors = ["#f03","#f60","#fc0","#9c3","#093","#39c","#96c","#c0c","#ccc"]

function colorized(text) {
    var colorized = ""
    var bracket_color = ""
    for (i = 0; i < text.length; i++) {
        var index = Math.floor(Math.random()*9)
        if (text[i] == "(")
            bracket_color = colors[index]

        color = (bracket_color.length && (text[i] == "(" || text[i] == ")")) ? bracket_color : colors[index]
        colorized = colorized + '<span style="color: '+color+' !important">' + text.charAt(i) + '</span>'
    }
    return colorized
}

<!-- --></script>
function time() {
  var amonth = 1
  var aday = 1
  var ayear = 2000

  var x = new Date()
  var dyear
  var dmonth
  var dday
  var tyear = x.getFullYear()
  var tmonth = x.getMonth()+1
  var tday = x.getDate()
  var y=1
  var mm=1
  var d=1
  var a2=0
  var a1=0
  var f=28

  if ((tyear/4)-parseInt(tyear/4)==0) {
    f=29
  }

  m = new Array(31, f, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)

  dyear = tyear-(ayear)

  dmonth = tmonth-amonth
  if (dmonth<0) {
    dmonth = dmonth+12
    dyear--
  }

  dday = tday-aday
  if (dday<0) {
    var ma = amonth+tmonth
    if (ma>12) {ma = ma-12}
    if (ma=0) {ma = ma+12}
    dday = dday+m[ma]
    dmonth--
  }

  if (dyear==0) {y=0}
  if (dmonth==0) {mm=0}
  if (dday==0) {d=0}
  if ((y==1) && (mm==1)) {a1=1}
  if ((y==1) && (d==1)) {a1=1}
  if ((mm==1) && (d==1)) {a2=1}
  if (y==1){
  document.write(+dyear+" Years") }
    if ((a1==1) && (a2==0)) {document.write(" and ")}
    if ((a1==1) && (a2==1)) {document.write(", ")}
    if (mm==1){
    document.write(dmonth+" Months")
  }
  if (a2==1) {document.write(", and ")}
  if (d==1){
    document.write(+dday+" Days")
  }
}

function myClock(){
today=new Date()
var theHours=today.getHours()
if (theHours>11)
{
theTimeSuffix="PM"
}
if (theHours>12)
var theHours=theHours-12
else
{
theTimeSuffix="AM"
}
var theMinutes=today.getMinutes()
if (theMinutes<10)
var theMinutes="0"+theMinutes
var theSeconds=today.getSeconds()
if (theSeconds<10)
var theSeconds="0"+theSeconds
var theTimeNow=theHours+":"+theMinutes+":"+theSeconds+" "+theTimeSuffix
document.formTime.textTime.value=theTimeNow
}
var clockWork=setInterval("myClock()",1000)

