// JavaScript Document
/***********************************************
* Memory Ticker script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
//Backslash any apostrophes within your text (ie: I\'m the king of the world!)
var tickercontents=new Array()
tickercontents[0]='"MedPharma Partners is much more hands-on than other consultants I have worked with, which is critical for a start-up company such as ours."  - CEO, e-health'

tickercontents[1]='"In addition to providing us with valuable strategic insights, the consultants from MedPharma Partners rolled-up their sleeves and did whatever was necessary to ensure that this important initiative was a resounding success."<br><br>  - Senior Director, Supply Chain'

tickercontents[2]='"In addition to their knowledge and experience, I was pleased how flexible they were able to work, filling in a number of roles as needed."  <br><br>- CIO '

tickercontents[3]='"MedPharma Partners brought a unique way of looking at a difficult problem and utilized a cutting edge technique that we hope to use for future strategic decisions." <br><br>- Vice President, Finance  '

tickercontents[4]='"MedPharma Partners helped APS transform itself into a high-growth company with a powerful business model. Their strategic insights, business development skills and organizational savvy have been invaluable." <br><br>- Founder, Risk Management Services '

tickercontents[5]='"MedPharma Partners\' support was critical to successfully implementing our enterprise resource and project management system.  Their day-to-day management and strategic advice were major elements of the program\'s success."<br><br>- Chief, Scientific Operations and Alliances  '

tickercontents[6]='"MedPharma\'s expertise in business planning and extensive experience with small and large businesses has been a great asset to an organization like the Forum with its many different members."<br><br>- Executive Director, Research Consortium '

tickercontents[7]='"MedPharma Partners has helped us establish and implement our business strategy. They work very effectively with my management team and have helped us create and implement a powerful strategy that has been well received by our board and the marketplace." <br><br>- CEO, e-health '

tickercontents[8]='"MedPharma Partners helped us to reach a consensus on a strategy by bringing the leadership team through a process that built on the basic facts affecting our business and laid out the tough choices we had to make in response"<br><br>- President, Technical Operations  '

tickercontents[9]='"MedPharma Partners identified key industry trends that helped shape our strategic thinking.  They also provided practical support in the M&A process, allowing the client to close a transaction with a strategic target"<br><br>- Senior Vice President, Contract Services '

tickercontents[10]='"The best practice findings from the MedPharma Partners study helped validate our internal thinking about how to best structure our IT activities.  We could not have gained this level of insight without their support"<br><br>- Vice President, Information Technology '

tickercontents[11]='"The information MedPharma Partners compiled was very insightful and helpful for me in working with my team to improve our approach to product development."<br><br>- Senior Vice President, Development  '

tickercontents[12]='"MedPharma Partners\' advice was extremely helpful for us in dealing with the challenges of interfacing effectively with third party manufacturers"<br><br>- Vice President, Contract Manufacturing '

tickercontents[13]='"MedPharma Partners partnered with us to address a complex problem and provided unbiased advice to help us clarify our approach.  They focused on helping us and not on selling us the next project, which I greatly appreciated" <br><br>- President, Manufacturing and Supply '


//configure the below variable to determine the delay between ticking of messages (in miliseconds):
var tickdelay=10000

////Do not edit past this line////////////////

var currentmessage=0


function changetickercontent(){
if (crosstick.filters && crosstick.filters.length>0)
	crosstick.filters[0].Apply()
crosstick.innerHTML=tickercontents[currentmessage]
if (crosstick.filters && crosstick.filters.length>0)
	crosstick.filters[0].Play()
currentmessage=(currentmessage==tickercontents.length-1)? currentmessage=0 : currentmessage+1
var filterduration=(crosstick.filters&&crosstick.filters.length>0)? crosstick.filters[0].duration*1000 : 0
setTimeout("changetickercontent()",tickdelay+filterduration)
}


function beginticker(){
	crosstick=document.getElementById("quote")
	changetickercontent()
}
document.write('<div id="quote"></div>')

if (window.addEventListener)
	window.addEventListener("load", beginticker, false)
else if (window.attachEvent)
	window.attachEvent("onload", beginticker)
else if (document.all || document.getElementById)
	window.onload=beginticker