function Excerpt(){var oDate=new Date();this.iDay=oDate.getDay();this.i=0;this.arr=new Array(this.i);}
Excerpt.prototype.add=function(sExcerpt,sAuthor){this.arr[this.i++]=new Array(sExcerpt,sAuthor);};Excerpt.prototype.loadScript=function(){document.write("<script src='js/excerpts/"+this.iDay+".js' type='text/javascript'></script>");};Excerpt.prototype.show=function(){iRand=Math.floor(Math.random()*this.i);sExcerpt='<span class="excerpt-text">"'+this.arr[iRand][0].replace(/\|/g,' ')+'"<br /></span>';if(typeof(this.arr[iRand][1])!="undefined")
sExcerpt+='<span class="excerpt-author">'+this.arr[iRand][1].replace(/\|/g,', ')+'</span>';document.write(sExcerpt);};m_oExcerpt=new Excerpt();m_oExcerpt.loadScript();