/*Spry Random Quote Display
Michael Arcement II - GothicWolf.Net
chaos986@gothicwolf.net*/

var quote_num = Math.floor(Math.random()*totalQuotes)+1;

var myFilterFunc = function(dataSet, row, rowNumber)
{
	if (row["@id"] == quote_num) return row; // Return the row to keep it in the data set.
	return null; // Return null to remove the row from the data set.
}
ds1.filter(myFilterFunc); // Filter the rows in the data set.
