
var caption = [];
	caption.quote = [
	  '"In a world of fast-moving news and diverse outlets, MNS is the best&ndash;agile, professional, and able to pitch the story in just the right way to just the right place.  They are a total pleasure to work with and I highly recommend them."',
	  '"MNS is an excellent firm I highly recommend.  Their leadership and staff is both professional and timely.  They gear their efforts to the news cycle and, even better, they work hard at getting ahead of it."',
	  '"MNS is quite simply the best I\'ve ever worked with. They don\'t just slap together a press release, send it out, and hope for the best. They actively work to promote your book and have great relations with the biggest names in the business. I consider them critical to my success---and wouldn\'t dare use anyone else!"',
	  '"If knowledge is power, MNS Publicity is a Beltway powerhouse. These gals know the issues, know the players, and don\'t mess around. They\'re a rare professional pleasure."',
	  '"MNS Publicity got me on every radio station in the galaxy. On The War On Christmas we wanted a full court press, and we got it. I can\'t magine that we missed any possible host or station in the nation. Needless to say, Marshall, Nappi & Schulz are no-problem, no-hassle consummate pros. It couldn\'t have gone smoother."',
	  '"An author cannot hope for better bookers than MNS Publicity. The gals know everyone, do everything, and treat authors like celebrities."',
	  '"MNS Publicity has it all &ndash; the contacts, reputation, savvy, and strategy to make a book successful. When it comes to conservative books, they are the dream team."'
  ];
	caption.author = [
		'-Seth Leibsohn',
		'-William J. Bennett',
		'-Peter Schweizer,',
		'-Kathryn Jean Lopez,',
		'-John Gibson,',
		'-Mona Charen',
		'-Ronald Kessler,'
	];
	caption.publisher = [
		'Co-author of "The Fight of our Lives:  Knowing the Enemy, Speaking the Truth, and Choosing to Win the War Against Radical Islam."',
		'Author of <em>The Fight of Our Lives: Knowing the Enemy, Speaking the Truth, and Choosing to Win the War Against Radical Islam</em> and host of the nationally syndicated radio program "Bill Bennett\'s Morning In America"',
		'NYT Bestselling author',
		'editor, National Review Online',
		'FOX News Anchor and author',
		'NYT Bestselling author',
		'NYT Bestselling author'
	];

var captionNum = 0;

function addEvent(elm,evType,fn,useCaption)
{
	if(elm.addEventListener)
	{
		elm.addEventListener(evType,fn,useCaption);
		return true;
	}
	else if(elm.attachEvent)
	{
		var r = elm.attachEvent('on' + evType,fn);
		return r;
	}
	else
	{
		elm['on' + evType] = fn;
	}
}

function testimonials()
{
	setInterval('swapCaption()',5000);
}

function swapCaption()
{
	var quote = document.getElementById('quoteID');
	var author = document.getElementById('authorID');
	var publisher = document.getElementById('publisherID');
	quote.innerHTML = caption.quote[captionNum];
	author.innerHTML = caption.author[captionNum];
	publisher.innerHTML = caption.publisher[captionNum];
	
	if(captionNum == caption.quote.length - 1)
	{
		captionNum = 0;
		return;
	}
	captionNum++;
}  
  	

addEvent(window,'load',testimonials,false);


