var pausecontent=new Array() pausecontent[0]='I just wanted to thank MBA Authority for your assistance with my job search. I ended up having eleven interviews. I accepted a position... as a Risk Analyst in charge of contracts and risk management. They actually created the position for me based on my resume and interviews. Thanks again for your assistance.
L.H. <\/strong>

' pausecontent[1]='Just wanted you to know that I procured a position as an Employee Relations & Talent Engagement Manager for a privately held corporation-only a 15 minute commute from my home-as a result of the direct mailing of my resume and cover letter to a company that you located through MBA Authority. Obviously, I\'m excited about my new job.
M.W.<\/strong>

' pausecontent[2]='Two weeks after I mailed out my cover letter and resume, I secured five interviews and had offers on the table that I simply couldn\'t resist. I am now with a very prestigious west-coast multinational bank, working as an Equity Analyst. Exactly what I wanted and wished for! I could not have asked for a better gift this year. Thank you, MBA Authority!
B.C.<\/strong>

' pausecontent[3]='Anytime you can have a service do the worst parts of any task - in this instance, searching for companies and printing up multiple resumes - you\'ve done a favor to yourself.
D.M.<\/strong>' pausecontent[4]='I just wanted to say thanks to the team that put my cover letters and resumes together - I received everything and they looked great, very professional. I immediately signed, stamped and sent them off so hopefully all those letters swirling around will find me a job soon.
L.R.' pausecontent[5]='Thanks to the mailings, I got 6 interviews and 4 offers-and I\'m still hearing from companies asking for more credentials and interviews. It took some time working with the writer to get the perfect cover letter, but within days of dropping in the mail 500+ letters to San Francisco and Sacramento companies, I began getting calls and...
T.T. <\/strong>

' pausecontent[6]='MBA Authority is THE place to begin any MBA career search. I was moving from out of state and was unsure of my prospects. After MBA Authority polished up my resume and I sent it out with their help, I was turning down interviews! I received four offers out of eight interviews from well-respected large corporations and landed my dream job!...
B.B. <\/strong>

' pausecontent[7]='From start to finish, MBA Authority helped me secure an executive position with one of my top choice companies in downtown Los Angeles. Less than 2 weeks after sending out 400+ resume and cover letters, I received calls for NINE interviews, all from very respectable companies, and wound up with THREE job offers...
L.A.

' pausecontent[8]='MBA Authority was extremely helpful to me in finding a job as a manager with a terrific media agency. Their staff is very helpful and the services they provide would take a person months to do on their own. They were worth every penny. The leads generated by MBA Authority\'s mailing campaign led me directly to finding my current employer....
R.S. <\/strong>

' pausecontent[9]='Whoever said it\'s impossible to find a job fresh out of B-School obviously has never met MBA Authority. I didn\'t have any problem at all! During my last year of B-School, I approached my career services for help in finding a job back in my home state. While they were great with me, they just didn\'t have the resources to help.
P.S.<\/strong>

' pausecontent[10]='The resume and cover letter that I received were excellent. The writer with whom I coordinated with did a wonderful job with them. I would not hesitate to seek your services again if I need to. Many thanks! And, keep up the good work!
P.M.<\/strong>

' pausecontent[11]='MBA Authority worked with me to identify my career needs. Furthermore, they provided me the invaluable service of creating a professional résumé and cover letter that will help me find a job in my desired market.
A.M.<\/strong>

' function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('
'+content[0]+'
') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 50) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 }