// Horizons Fading Press billboards
// Brought to you through the magic of JQuery

var billboards=[];


// Format as quote[%INDEX%]=[%The ID%, %The Content%];

billboards[0]=[
		   'generic',
		   '<img src="/images/bb_gen.jpg" width="780" height="400" alt="Welcome to our humble abode." />'
		   ];

/*		   
billboards[1]=[
		   'jamesbeard',
		   '<h1>Horizons goes back to Beard</h1><h2>Join us for another historic dinner at the James Beard House in NYC.</h2><a href="http://jamesbeard.org/index.php?q=events_beardhouse_060910" target="_blank">Click here for details.</a>'
		   ];
*/



// Do not edit below this line
// ****************************************************************************************************
var numItems=billboards.length;
var id,content,markup;
markup = '<div id="billboards">'; //Begin markup buffer
for (i=0;i<numItems;i++)
{
	id = 'bb_' + billboards[i][0];
	content = billboards[i][1];
	markup += ('<div id="' +id+ '">' +content+ '</div>');
}
markup +='</div>'; //End markup buffer
document.write(markup); // Write markup buffer to document

jQuery('#billboards').innerfade({
	animationtype: 'fade',
	speed: 'slow',
	timeout: 6000,
	type: 'sequence',//'random_start',
	runningclass: 'innerfade'
});



