// Horizons Fading Press Quotes
// Brought to you through the magic of JQuery

var quotes=[];


// Format as quote[%INDEX%]=[%The Title%, %The Quote%,%The PNG Image URL%,%The Link to the Article || Null%];
quotes[0]=[ //Default Quote: If No Other Quotes Work Correctly, this will be the main one
		   'Craig Laban Gives Horizons Three Bells',
		   'The food is so carefully wrought, so vividly infused with creativity and satisfying flavors... This is some of the most interesting cooking in town, vegan or otherwise.',
		   '/images/press/13112009_pq_laban.png',
		   'http://www.philly.com/philly/restaurants/6001941.html'
		   ];
quotes[1]=[
		   'Fodor’s Travel Guide',
		   'Vegan food is hardly ever associated with fine dining, but chef-owner Rich Landau effortlessly pulls off that mix in this bright, airy dining room off bustling South Street. This is vegetarian food that\'s not afraid to be vegetarian.',
		   '/images/press/13112009_pq_fodors.png',
		   'http://www.fodors.com/world/north-america/usa/pennsylvania/philadelphia/review-428761.html'
		   ];
quotes[2]=[
		   'Philly Mag Top 50',
		   'One of the most acclaimed vegan restaurants in the country.',
		   '/images/press/13112009_pq_phillymag.png',
		   'http://www.phillymag.com/articles/vegan_restaurants_2009_philly_mag_50/'
		   ];
quotes[3]=[
		   'TravelChannel.com Guide',
		   'Here is a vegetarian juggernaut of culinary excellence.',
		   '/images/press/13112009_pq_travelchannel.png',
		   'http://guides.travelchannel.com/philadelphia/dining/special-features/vegetarian/366616.html'
		   ];
quotes[4]=[
		   'Frommer\'s Travel Guides Online',
		   'Philly\'s vegetarian and vegan dining scene is up-and-coming. The best spot for an upscale vegan dinner is Horizons.',
		   '/images/press/13112009_pq_frommers.png',
		   'http://www.frommers.com/destinations/philadelphia/0023024589.html'
		   ];



// Do not edit below this line
// ****************************************************************************************************
var numItems=quotes.length;
var id,title,quote,imageSRC,URL,markup;
markup = '<ul id="pressquotes">'; //Begin markup buffer
markup += '<li id="pq_header"><img src="/images/press/billboard_start.png" border="0" alt="Look who\'s talking." /></li>';
for (i=0;i<numItems;i++)
{
	id = 'pq_' + i;
	title = 	quotes[i][0];
	quote = 	quotes[i][1];
	imageSRC =	quotes[i][2];
	URL =		quotes[i][3];
	markup += ('<li id="' +id+ '"><a href="' +URL+ '" target="_blank"><img src="' +imageSRC+ '" alt="' +title+ '" border="0" /></a></li>');
}
markup +='</ul>'; //End markup buffer
document.write(markup); // Write markup buffer to document

jQuery('#pressquotes').innerfade({
	animationtype: 'fade',
	speed: 'slow',
	timeout: 5000,
	type: 'sequence',//'random_start',
	runningclass: 'innerfade'
});



