function hscroll(message,speed,width,height,font,nom)
				{
				////////////////////////////////////////DECLARATION////////////////////////////////////////////////////////
				/*************************************Attribut************************************/
				this.width;//width
				this.height;//height
				this.left;
				/************************************Methode**************************************/
				this.start=new Function();//fait commencer le scroll
				this.action=new Function();//action qui fait scroller entre deux messages
				/////////////////////////////////////////////////////////////////////////////////////////////////////////////
				/////////////////////////////////////////AFFECTATION////////////////////////////////////////////////////////
				this.speed=speed
				this.font=font;
				this.width = width;
				this.height = height;
				this.message=message;


				this.start=function scroll_start()
					{

					document.getElementById(nom+'scroller_1').style.width=this.message.length*5;
					document.getElementById(nom+'scroller_1').style.left=this.width;
					this.left =this.width;
					if(document.getElementById)
						this.action();

					};

				this.action=function scroll_action()
					{
								this.left -= 1;
					document.getElementById(nom+'scroller_1').style.left = this.left;
					if((this.left+parseInt(document.getElementById(nom+'scroller_1').style.width)) >0)
						setTimeout(nom+".action()",this.speed)
					else
						this.start()
					};
				////////////////////////////////////////////////////////////////////////////////////////////////////////////////
				//////////////////////////////////////FABRICATION DES DIVS/////////////////////////////////////////////////////
				with(document)
				 {
				 	write('<DIV onMouseOver="'+nom+'.mouseover=1;" onMouseOut="'+nom+'.mouseover=0;" STYLE="width:'+this.width+';height:'+this.height+';" class="Marquee">');
					write('<DIV id='+nom+'scroller_1  style="font:'+this.font+'px;position:absolute;left:'+this.width+'px;" class="Marqueetextscroll"><nobr>'+this.message+'</nobr></DIV>');
					write('</DIV>');
				 }
				////////////////////////////////////////////////////////////////////////////////////////////////////////////////
				}
