//////////////////////////////////////////////////////////
///////                                             //////
///////         HaraTaiki JavaScript Config         //////
///////         Written by David Leoanrd            //////
///////                                             //////
//////////////////////////////////////////////////////////

///////////////START CONFIGURATION////////////////////////

// twitter config
var twitdiv = '#tweets'; // where you want the lastest tweet to be
var twituser = 'cmdshft';  //twitter usrname
var twittime = true; // turn the time on or off
var twitlimit = 1; //number of tweets to show

// last.fm configuration
var lfmdiv = '#lastfm'; // where you want the lastfm track to be
var lfmusername = 'lucidurine'; // last.fm usrname
var lfmapi = 'e56e93e0d9d0da4e866a332662cc8d5f'; // last.fm API key
var lfmlimit = '1' // number of tracks

// quotes configuration
var quotediv = '#quote'; // where you want the quote to be
var quotexml = 'quotes.xml'; //location of the xml file that has the quotes
var quotenum = 8; // number of quotes

//////////////END CONFIGURATION//////////////////////////

// these are variables you will probably never change...

var Track = new Array();
var Quote = new Array();
var rndNum = Math.floor(Math.random() * quotenum); 