
// sniffers
var agt=navigator.userAgent.toLowerCase();
var appVer = navigator.appVersion.toLowerCase();
var is_fx = agt.indexOf('Firefox');
document.getElementById?STD=true:STD=false; // w3c compliant
(document.all&&document.getElementById)?IE5=true:IE5=false;
(!document.all&&document.getElementById)?NS6=true:NS6=false;
document.layers?NS4=true:NS4=false;
document.all?IE4=true:IE4=false;
var PC=(navigator.userAgent.toLowerCase().indexOf("win")!=-1);
var MAC=(navigator.userAgent.toLowerCase().indexOf("mac")!=-1);


function movepic(img_name,img_src){document[img_name].src=img_src;};


// MOUSE TRAIL CLOCK 
// fonction taxee sur le JavaScript Source : http://javascript.internet.com
// L'original proviendrait de Amy Cook (ncgoddess@msn.com )
// et je l'ai mis au gout du jour pour les navigateurs de 2005 !
// attention ca ne devrait pas marcher sur les +vieux

ClockHeight=40;
ClockWidth=40;
ClockFromMouseY=0;
ClockFromMouseX=-100;

d=new Array("DIMANCHE","LUNDI","MARDI","MERCREDI","JEUDI","VENDREDI","SAMEDI");
m=new Array("JANVIER","FEVRIER","MARS","AVRIL","MAI","JUIN","JUILLET","AOUT","SEPTEMBRE","OCTOBRE","NOVEMBRE","DECEMBRE");

date=new Date();
day=date.getDate();
year=date.getYear();
if (year < 2000) year=year+1900;
TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+year;
D=TodaysDate.split('');
H='...';
H=H.split('');
M='....';
M=M.split('');
S='.....';
S=S.split('');
Face='1 2 3 4 5 6 7 8 9 10 11 12';
font='Arial';
size=10;
speed=0.4;
var ns = (navigator.appName.indexOf("Netscape") !=-1);
ie=(document.all);
Face=Face.split(' ');
n=Face.length;
a=size*1;
ymouse=0;
xmouse=0;
scrll=0;
Split=360/n;
Dsplit=360/D.length;
HandHeight=ClockHeight/4.5
HandWidth=ClockWidth/4.5
HandY=-7;
HandX=-2.5;
scrll=0;
step=0.06;
currStep=0;
y=new Array();x=new Array();Y=new Array();X=new Array();
for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}
Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();
for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}

if (ns){
	for (i=0; i < D.length; i++) document.write('<div id="nsDate'+i+'" class="nsDate">' +D[i]+'<\/div>');
	for (i=0; i < n; i++)	document.write('<div id="nsFace'+i+'" class="nsFace">' +Face[i]+ '<\/div>');
	for (i=0; i < S.length; i++)document.write('<div id="nsSeconds'+i+'" class="nsSeconds">' +S[i]+'<\/div>');
	for (i=0; i < M.length; i++)document.write('<div id="nsMinutes'+i+'" class="nsMinutes">' +M[i]+'<\/div>');
	for (i=0; i < H.length; i++)document.write('<div id="nsHours'+i+'" class="nsHours">' +H[i]+'<\/div>');
}
if (ie){
	document.write('<div id="Od"><div>');
	for (i=0; i < D.length; i++)
	document.write('<div id="ieDate">'+D[i]+'<\/div>');
	document.write('<\/div><\/div>');
	document.write('<div id="Of"><div>');
	for (i=0; i < n; i++)
	document.write('<div id="ieFace">' +Face[i]+'<\/div>');
	document.write('<\/div><\/div>');
	document.write('<div id="Oh"><div>');
	for (i=0; i < H.length; i++)
	document.write('<div id="ieHours">'+H[i]+'<\/div>');
	document.write('<\/div><\/div>');
	document.write('<div id="Om"><div>');
	for (i=0; i < M.length; i++)
	document.write('<div id="ieMinutes">'+M[i]+'<\/div>');
	document.write('<\/div><\/div>')
	document.write('<div id="Os""><div>');
	for (i=0; i < S.length; i++)
	document.write('<div id="ieSeconds">'+S[i]+'<\/div>');
	document.write('<\/div><\/div>')
}



function ClockAndAssign(){
	time = new Date ();
	secs = time.getSeconds();
	sec = -1.57 + Math.PI * secs/30;
	mins = time.getMinutes();
	min = -1.57 + Math.PI * mins/30;
	hr = time.getHours();
	hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;
	if (ie){
		document.getElementById("Od").style.top=window.document.body.scrollTop;
		document.getElementById("Of").style.top=window.document.body.scrollTop;
		document.getElementById("Oh").style.top=window.document.body.scrollTop;
		document.getElementById("Om").style.top=window.document.body.scrollTop;
		document.getElementById("Os").style.top=window.document.body.scrollTop;
	}	
	for (i=0; i < n; i++){
	 var F=(ns)?document.getElementById("nsFace"+i).style:ieFace[i].style;
	 F.top=y[i] + ClockHeight*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll+'px';
	 F.left=x[i] + ClockWidth*Math.cos(-1.0471 + i*Split*Math.PI/180)+'px';
	}	
	for (i=0; i < H.length; i++){
	 var HL=(ns)?document.getElementById("nsHours"+i).style:ieHours[i].style;
	 HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll+'px';
	 HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs)+'px';
	}	
	for (i=0; i < M.length; i++){
	 var ML=(ns)?document.getElementById("nsMinutes"+i).style:ieMinutes[i].style;
	 ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll+'px';
	 ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min)+'px';
	}	
	for (i=0; i < S.length; i++){
	 var SL=(ns)?document.getElementById("nsSeconds"+i).style:ieSeconds[i].style;
	 SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll+'px';
	 SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec)+'px';
	}	
	for (i=0; i < D.length; i++){
	 var DL=(ns)?document.getElementById("nsDate"+i).style:ieDate[i].style;
	 DL.top=Dy[i] + ClockHeight*1.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll+'px';
	 DL.left=Dx[i] + ClockWidth*2.0*Math.cos(currStep+i*Dsplit*Math.PI/180)+'px';
	}
	currStep-=step;
}

function Delay(){
	scrll=0;
	Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);
	Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);
	for (i=1; i < D.length; i++){
		Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);
		Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);
	}
	y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);
	x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);
	for (i=1; i < n; i++){
		y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);
		x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);
	}
	ClockAndAssign();
	setTimeout('Delay()',40);
}

function Mouse(evnt){
	if (ns){
	ymouse = evnt.pageY+ClockFromMouseY-(window.pageYOffset);
	xmouse = evnt.pageX+ClockFromMouseX;
	}
	else if (ie){
	ymouse = event.y+ClockFromMouseY;
	xmouse = event.x+ClockFromMouseX;
	}
	document.dataholder.mmX.value=xmouse;
	document.dataholder.mmY.value=ymouse;
}