/*
Simple Image Trail script- By JavaScriptKit.com
Visit http://www.javascriptkit.com for this script and more
This notice must stay intact
*/

var offsetfrommouse=[15,15]; //image x,y offsets from cursor position in pixels. Enter 0,0 for no offset
var displayduration=0; //duration in seconds image should remain visible. 0 for always.
var currentimageheight = 600;	// maximum image size.
var strAlign;
strAlign = ""
var strIN;
strIN = "";
var newHTML;
newHTML = "";
function gettrailobj()
{
	if (document.getElementById)
	{
		return document.getElementById("trailimageid").style;
	}
	else if (document.all)
	{
		return document.all.trailimagid.style;
	}
}
function gettrailobjnostyle()
{
	if (document.getElementById)
	{
		return document.getElementById("trailimageid");
	}
	else if (document.all)
	{
		return document.all.trailimagid;
	}
}
function truebody(){
	return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function followmouse(e)
{
	var xcoord=offsetfrommouse[0]
	var ycoord=offsetfrommouse[1]

	var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
	var docheight=document.all? Math.min(truebody().scrollHeight, truebody().clientHeight) : Math.min(document.body.offsetHeight, window.innerHeight)
	
	if (typeof e != "undefined")
	{//for firefox
		if (docwidth - e.pageX < 500)
		{
			xcoord = e.pageX - xcoord - 10; // Move to the left side of the cursor
			strAlign = "Right"
		}
		else
		{
			xcoord += e.pageX;
			strAlign = "Left"
		}
		if (docheight - e.pageY < 500)
		{
			ycoord += e.pageY - Math.max(0,(currentimageheight + e.pageY - docheight - truebody().scrollTop));
		} 
		else
		{
			ycoord += e.pageY;
		}
		var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
		var docheight=document.all? Math.max(truebody().scrollHeight, truebody().clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight)
		gettrailobj().left=xcoord;
		gettrailobj().top=ycoord;
		newHTML = '<div style="position:absolute;  background-color: white;   background-image:url(images/loader.gif); background-repeat:no-repeat; background-position:center" align='+strAlign+'><img src="' + imagename + '" border="0" style="BORDER-TOP: #FC2B31 10px solid; BORDER-RIGHT: #FC2B31 10px solid; BORDER-BOTTOM: #FC2B31 10px solid; BORDER-LEFT: #FC2B31 10px solid;"></div>';
		gettrailobjnostyle().innerHTML = newHTML;
		gettrailobj().visibility="visible";
	} 
	else if (typeof window.event != "undefined")
	{//for ie
		if (docwidth - event.clientX < 500)
		{//for last col
			xcoord = event.clientX + truebody().scrollLeft - xcoord - 330; // Move to the left side of the cursor
			strAlign = "Right"
		} else 
		{
			xcoord += truebody().scrollLeft+event.clientX
			strAlign = "Left"
		}
		if (docheight - event.clientY < 500)
		{
			ycoord += event.clientY + truebody().scrollTop - Math.max(0,(currentimageheight + event.clientY - docheight));
		} else 
		{
			ycoord += truebody().scrollTop + event.clientY;
		}
		var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
		var docheight=document.all? Math.max(truebody().scrollHeight, truebody().clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight)
		gettrailobj().left=xcoord;
		gettrailobj().top=ycoord;
	}
}
function showtrail(imagename){
		imagename = imagename.replace(/\¶/g, "'");
		strIN = imagename;
		document.onmousemove=followmouse;
		/***************/
		
			var xcoord=offsetfrommouse[0]
			var ycoord=offsetfrommouse[1]
			var docwidth=document.all? truebody().scrollLeft+truebody().clientWidth : pageXOffset+window.innerWidth-15
			if (typeof window.event != "undefined")
			{//for ie
			
				if (docwidth - event.clientX < 500)
				{//for last col
					xcoord = event.clientX + truebody().scrollLeft - xcoord - 150; // Move to the left side of the cursor
					strAlign = "Right"
				} 
				else
				{
					xcoord += truebody().scrollLeft+event.clientX
					strAlign = "Left"
				}
				
				newHTML = '<div style="position:absolute;  background-color: white; background-image:url(images/loader.gif); background-repeat:no-repeat; background-position:center" align='+strAlign+'><img src="' + imagename + '" border="0" style="BORDER-TOP: #FC2B31 10px solid; BORDER-RIGHT: #FC2B31 10px solid; BORDER-BOTTOM: #FC2B31 10px solid; BORDER-LEFT: #FC2B31 10px solid;"></div>';
				
				gettrailobjnostyle().innerHTML = newHTML;
				gettrailobj().visibility="visible";
			}		
}
function hidetrail(){
	gettrailobj().visibility="hidden"
	document.onmousemove=""
	gettrailobj().left="-2000px"
	
    if (document.layers){
        document.captureEvents(Event.MOUSEMOVE);
    }
    document.onmousemove = handlerMM;
}
