// declare the 'covers' array

// since flash's string doesn't require quotations around each name, let's keep the javascript array similar
// first create a temporary string to hold the comma-delimited list, then create an array from this string using the split() method
var MeString = "suicide,hacked,poopie,monson,wanderer,falling,gunslinger,treebooty,sketching,corn,cannonball,mirrorshot,locked,pierjump,wheatfield,badass,birdshit,heartattack,satan,selfportrait,windblown,haircut,greeneyes,ballerina,redlight,goldengate,girlfriend,drummer,casket,urination,reject,firefighter,copland,wasabi,eatshit,wheaties,pumpkin,shining,scanned,nohands,outdated,seriously,santa,greenscales,mom,lips,jettajump,chinagirl,naval,twins,openmouth,thugged,ryanbday,april,duckfart,frisbee,pumpkins,assmuffin,familia,passport,zombified,waterfall,asakusa,superhero,50cent,happy,pouting,orthodox,oma,applesauce,gecko,exploratorium,pyramid,splash,wrestling,sumo,annanichole,sandboarding,jcc,visionstreetwear,monotype,tapatio,bushwacker,wingnut,asleep,soulsuck,skydiving,whitening"

var Me = MeString.split(","); 



// get a random value from the array ('Me.length' = number of entries in array)
var numMe = Math.floor(Math.random() * (Me.length))

function randomCover(){
	location.reload();
	//MM_swapImage('cover','','covers/cover_' + Me[numMe] + '.jpg,1);
}