document.writeln('<\/SCRIPT>\r\n\r\n\r\n<script type="text\/javascript">\r\n      \r\n\/***********************************************\r\n* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http:\/\/www.dynamicdrive.com)\r\n* This notice MUST stay intact for legal use\r\n* Visit http:\/\/www.dynamicdrive.com\/ for this script and 100s more.\r\n***********************************************\/\r\n \r\nvar fadeimages=new Array()\r\n\/\/SET IMAGE PATHS. Extend or contract array as needed\r\nfadeimages[0]=["..\/mise_en_page\/images\/HenriIV_2.jpg", "", ""] \r\nfadeimages[1]=["..\/mise_en_page\/images\/timbre_monnaie_av_2.jpg", "", ""]\r\nfadeimages[2]=["..\/mise_en_page\/images\/mougeotte_2.jpg", "", ""] \r\n \r\n\r\n \r\nvar fadebgcolor="white"\r\n\r\n\/\/\/\/NO need to edit beyond here\/\/\/\/\/\/\/\/\/\/\/\/\/\r\n \r\nvar fadearray=new Array() \/\/array to cache fadeshow instances\r\nvar fadeclear=new Array() \/\/array to cache corresponding clearinterval pointers\r\n \r\nvar dom=(document.getElementById) \/\/modern dom browsers\r\nvar iebrowser=document.all\r\n \r\nfunction fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){\r\nthis.pausecheck=pause\r\nthis.mouseovercheck=0\r\nthis.delay=delay\r\nthis.degree=10 \/\/initial opacity degree (10%)\r\nthis.curimageindex=0\r\nthis.nextimageindex=1\r\nfadearray[fadearray.length]=this\r\nthis.slideshowid=fadearray.length-1\r\nthis.canvasbase="canvas"+this.slideshowid\r\nthis.curcanvas=this.canvasbase+"_0"\r\nif (typeof displayorder!="undefined")\r\ntheimages.sort(function() {return 0.5 - Math.random();}) \/\/thanks to Mike (aka Mwinter) :)\r\nthis.theimages=theimages\r\nthis.imageborder=parseInt(borderwidth)\r\nthis.postimages=new Array() \/\/preload images\r\nfor (p=0;p<theimages.length;p++){\r\nthis.postimages[p]=new Image()\r\nthis.postimages[p].src=theimages[p][0]\r\n}\r\n \r\nvar fadewidth=fadewidth+this.imageborder*2\r\nvar fadeheight=fadeheight+this.imageborder*2\r\n \r\nif (iebrowser&&dom||dom) \/\/if IE5+ or modern browsers (ie: Firefox)\r\ndocument.write(\'<div id="master\'+this.slideshowid+\'" style="position:relative;width:\'+fadewidth+\'px;height:\'+fadeheight+\'px;overflow:hidden;"><div id="\'+this.canvasbase+\'_0" style="position:absolute;width:\'+fadewidth+\'px;height:\'+fadeheight+\'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:\'+fadebgcolor+\'"><\/div><div id="\'+this.canvasbase+\'_1" style="position:absolute;width:\'+fadewidth+\'px;height:\'+fadeheight+\'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:\'+fadebgcolor+\'"><\/div><\/div>\')\r\nelse\r\ndocument.write(\'<div><img name="defaultslide\'+this.slideshowid+\'" src="\'+this.postimages[0].src+\'"><\/div>\')\r\n \r\nif (iebrowser&&dom||dom) \/\/if IE5+ or modern browsers such as Firefox\r\nthis.startit()\r\nelse{\r\nthis.curimageindex++\r\nsetInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)\r\n}\r\n}\r\n\r\nfunction fadepic(obj){\r\nif (obj.degree<100){\r\nobj.degree+=10\r\nif (obj.tempobj.filters&&obj.tempobj.filters[0]){\r\nif (typeof obj.tempobj.filters[0].opacity=="number") \/\/if IE6+\r\nobj.tempobj.filters[0].opacity=obj.degree\r\nelse \/\/else if IE5.5-\r\nobj.tempobj.style.filter="alpha(opacity="+obj.degree+")"\r\n}\r\nelse if (obj.tempobj.style.MozOpacity)\r\nobj.tempobj.style.MozOpacity=obj.degree\/101\r\nelse if (obj.tempobj.style.KhtmlOpacity)\r\nobj.tempobj.style.KhtmlOpacity=obj.degree\/100\r\nelse if (obj.tempobj.style.opacity&&!obj.tempobj.filters)\r\nobj.tempobj.style.opacity=obj.degree\/101\r\n}\r\nelse{\r\nclearInterval(fadeclear[obj.slideshowid])\r\nobj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"\r\nobj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)\r\nobj.populateslide(obj.tempobj, obj.nextimageindex)\r\nobj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0\r\nsetTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)\r\n}\r\n}\r\n \r\nfadeshow.prototype.populateslide=function(picobj, picindex){\r\nvar slideHTML=""\r\nif (this.theimages[picindex][1]!="") \/\/if associated link exists for image\r\nslideHTML=\'<a href="\'+this.theimages[picindex][1]+\'" target="\'+this.theimages[picindex][2]+\'">\'\r\nslideHTML+=\'<img src="\'+this.postimages[picindex].src+\'" border="\'+this.imageborder+\'px">\'\r\nif (this.theimages[picindex][1]!="") \/\/if associated link exists for image\r\nslideHTML+=\'<\/a>\'\r\npicobj.innerHTML=slideHTML\r\n}\r\n \r\n \r\nfadeshow.prototype.rotateimage=function(){\r\nif (this.pausecheck==1) \/\/if pause onMouseover enabled, cache object\r\nvar cacheobj=this\r\nif (this.mouseovercheck==1)\r\nsetTimeout(function(){cacheobj.rotateimage()}, 100)\r\nelse if (iebrowser&&dom||dom){\r\nthis.resetit()\r\nvar crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)\r\ncrossobj.style.zIndex++\r\nfadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)\r\nthis.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"\r\n}\r\nelse{\r\nvar ns4imgobj=document.images[\'defaultslide\'+this.slideshowid]\r\nns4imgobj.src=this.postimages[this.curimageindex].src\r\n}\r\nthis.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0\r\n}\r\n \r\nfadeshow.prototype.resetit=function(){\r\nthis.degree=10\r\nvar crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)\r\nif (crossobj.filters&&crossobj.filters[0]){\r\nif (typeof crossobj.filters[0].opacity=="number") \/\/if IE6+\r\ncrossobj.filters(0).opacity=this.degree\r\nelse \/\/else if IE5.5-\r\ncrossobj.style.filter="alpha(opacity="+this.degree+")"\r\n}\r\nelse if (crossobj.style.MozOpacity)\r\ncrossobj.style.MozOpacity=this.degree\/101\r\nelse if (crossobj.style.KhtmlOpacity)\r\ncrossobj.style.KhtmlOpacity=this.degree\/100\r\nelse if (crossobj.style.opacity&&!crossobj.filters)\r\ncrossobj.style.opacity=this.degree\/101\r\n}\r\n \r\n \r\nfadeshow.prototype.startit=function(){\r\nvar crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)\r\nthis.populateslide(crossobj, this.curimageindex)\r\nif (this.pausecheck==1){ \/\/IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER\r\nvar cacheobj=this\r\nvar crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)\r\ncrossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}\r\ncrossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}\r\n}\r\nthis.rotateimage()\r\n}\r\n\r\n<\/script>');