


	
	
	// Store some random quotations


	var random_quotes = new Array ( );
random_quotes[0] = "http://output56.rssinclude.com/output?type=js&id=117163&hash=b114c6bafee0a30f3bd244d1cc566347";
random_quotes[1] = "http://output56.rssinclude.com/output?type=js&id=117165&hash=23fefce84371c868e4714341239a3c53";

// Pick a random quote from the list,
// and set the 'random-quote' paragraph content to that quote


function getFeed()
{

document.write("<script type='text/javascript' src='"+random_quotes[rand(2)-1]+"'></script>");
}

function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}