// 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 = "zoe,dunetarded,rocker,meditation,pink,exceserise,ugly,selfdestruct,machine,sacrifice,whatnow,taste,drawn_out,creep,friends,zoe_skate,giddyup,slinging,kindness,sorry,sucker,apathy,goodtimes,content,haircut,beaten,woops,apnea,lick,blue,eatme,backpack,mustache,first,helmet,thieveslikeus,there,jamespope,visit"
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);
}