<!-- cloak

//Kissing trail- By dij8 (dij8@dij8.com)
//Modified by Dynamic Drive for bug fixes
//Visit http://www.dynamicdrive.com for this script

ttCount = 3 //maximum number of images on screen at one time
curtt = 0 //the last image DIV to be displayed (used for timer)
aDelay = 600 //duration images stay on screen (in milliseconds)
aSpacer = 100 //distance to move mouse b4 next heart appears
theimage = "images/taxi1.gif" //the 1st image to be displayed
theimage2 = "images/taxi2.gif" //the 2nd image to be displayed

//Browser checking and syntax variables
var docLayers = (document.layers) ? true:false;
var docId = (document.getElementById) ? true:false;
var docAll = (document.all) ? true:false;
var docbitK = (docLayers) ? "document.layers['":(docId) ? "document.getElementById('":(docAll) ? "document.all['":"document."
var docbitendK = (docLayers) ? "']":(docId) ? "')":(docAll) ? "']":""
var stylebitK = (docLayers) ? "":".style"
var showbitK = (docLayers) ? "show":"visible"
var hidebitK = (docLayers) ? "hide":"hidden"
var ns6=document.getElementById&&!document.all
//Variables used in script
var posX, posY, lastX, lastY, ttCount, curtt, aDelay, aSpacer, theimage
lastX = 0
lastY = 0
//Collection of functions to get mouse position and place the images
function dott(e) {

posX = getMouseXPos(e)
posY = getMouseYPos(e)
if (posX>(lastX+aSpacer)||posX<(lastX-aSpacer)||posY>(lastY+aSpacer)||posY<(lastY-aSpacer)) {
showtt(posX,posY)
lastX = posX
lastY = posY
}
}
// Get the horizontal position of the mouse
function getMouseXPos(e) {
if (document.layers||ns6) {
return parseInt(e.pageX+10)
} else {
return (parseInt(event.clientX+10) + parseInt(document.body.scrollLeft))
}
}
// Get the vertical position of the mouse
function getMouseYPos(e) {
if (document.layers||ns6) {
return parseInt(e.pageY)
} else {
return (parseInt(event.clientY) + parseInt(document.body.scrollTop))
}
}
//Place the image and start timer so that it disappears after a period of time
function showtt(x,y) {
var processedx=ns6? Math.min(x,window.innerWidth-75) : docAll? Math.min(x,document.body.clientWidth-55) : x
if (curtt >= ttCount) {curtt = 0}
eval(docbitK + "tt" + curtt + docbitendK + stylebitK + ".left = " + processedx)
eval(docbitK + "tt" + curtt + docbitendK + stylebitK + ".top = " + y)
eval(docbitK + "tt" + curtt + docbitendK + stylebitK + ".visibility = '" + showbitK + "'")
if (eval("typeof(aDelay" + curtt + ")")=="number") {
eval("clearTimeout(aDelay" + curtt + ")")
}
eval("aDelay" + curtt + " = setTimeout('hidett(" + curtt + ")',aDelay)")
curtt += 1
}
//Make the image disappear
function hidett(knum) {
eval(docbitK + "tt" + knum + docbitendK + stylebitK + ".visibility = '" + hidebitK + "'")
}

function abegin(){
//Let the browser know when the mouse moves
if (docLayers) {
document.captureEvents(Event.MOUSEMOVE)
document.onMouseMove = dott
} else {
document.onmousemove = dott
}
}
window.onload=abegin
// decloak -->
<!-- cloak
// Add all DIV's 
if (document.all||document.getElementById||document.layers){
for (k=0;k<ttCount;k=k+2) {
document.write('<div id="tt' + k + '" class="tt"><img src="' + theimage + '" alt="" border="0"></div>\n')
document.write('<div id="tt' + (k+1) + '" class="tt"><img src="' + theimage2 + '" alt="" border="0"></div>\n')
}
}

// decloak -->
