	function BrowserCheck() { 
		var b = navigator.appName 
		if (b=="Netscape") this.b = "ns" 
		else if (b=="Microsoft Internet Explorer") this.b = "ie" 
		else this.b = b 
		this.safari = (navigator.userAgent.toLowerCase().indexOf('safari')>=0)  
		this.Safari = (navigator.userAgent.toLowerCase().indexOf('safari')>=0)  
		this.v = parseInt(navigator.appVersion) 
 
		if (this.safari){
			this.b="ie";
			this.safari=false;
			this.v = 6;
		}
 
		this.ns = (this.b=="ns" && this.v>=4) 
		this.ns4 = (this.b=="ns" && this.v==4) 
		this.ns5 = (this.b=="ns" && this.v==5) 
		this.ie = (this.b=="ie" && this.v>=4) 
		this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0) 
		this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0) 
		if (this.ie5) this.v = 5;
		this.min = (this.ns||this.ie) 

		usragt=navigator.userAgent.toLowerCase();
		this.mac = 0;
		this.opera = ( usragt.indexOf('opera')!=-1 ) ? 1 : 0;
	}

	var is = new BrowserCheck();
	var agt=navigator.userAgent.toLowerCase();
	var mac = (agt.indexOf("mac")!=-1);
	
var _onload;
var origWidth = 0; 
var origHeight = 0;
var bw = new checkBrowser();
var speed;
var pause;
var strtdly = 1000;
var _maxinf = 0;
var _curinf = 0;
var _move = false;
var dloop, uloop, timer;
var nb = 1;
var nbLoop = 1; 
var loaded = false;
var infos = new Array();
var _build = "<div id=Cont align=left>";
	
	
	
	function checkBrowser(){
	useragent=navigator.userAgent.toLowerCase();
	this.ver=navigator.appVersion
	this.dom=document.getElementById?1:0
	this.ie6=(this.ver.indexOf("MSIE 6")>-1)?1:0;
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie5=(this.ie6)?1:this.ie5;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
	this.opr=useragent.indexOf('opera')!=-1?1:0;

	usragt=navigator.userAgent.toLowerCase();
	this.mac = ( usragt.indexOf('mac')!=-1 ) ? 1 : 0;
	this.opera = ( usragt.indexOf('opera')!=-1 ) ? 1 : 0;

	return this
}