var images = [ "a55_rgy.jpg",
			  "backintime.jpg",
			  "bigdrink.jpg", 
			  "tacos.jpg",
  			  "boobys.jpg",
 			  "drugs.jpg",
  			  "guts.jpg",
  			  "jesustolen.jpg",
 			  "l33th4x00rr00lz.jpg",
  			  "posse.jpg",
			  
  			  "mars.jpg",
			  "movietitles.jpg",
 			  "nerdware.jpg",
  			  "noparking.jpg",
  			  "octane.jpg",
 			  "pins.jpg",
  			  "pwned.jpg",
  			  "sibyl.jpg",
 			  "soma.jpg",
  			  "suck.jpg",
			  
  			  "titgrab.jpg",
 			  "winnar.jpg",
			  "yak.jpg",
			  "jard.jpg",
			  "snake.jpg",
			  "m5v10.jpg",
			  "wait.jpg",
			  "cafebong.jpg",
			  "lowrider.jpg",
			  "blob.jpg",	

			  "camera.jpg",	
			  "cart.jpg",	
			  "umbrella.jpg"		];

var imagestx = [ "raw.gif",
			  "onmamas.gif",
			  "seriously.gif", 
			  "yummy.gif",
  			  "drole.gif",
 			  "subtle.gif",
  			  "gut-a-rific.gif",
  			  "faulty.gif",
 			  "w00t.gif",
  			  "blank.gif",
			  
  			  "mars.gif",
			  "heh.gif",
 			  "teh_sux.gif",
  			  "denied.gif",
  			  "vitaming.gif",
 			  "cupcakes.gif",
  			  "pwned.gif",
  			  "ajax.gif",
 			  "soma.gif",
  			  "peachy.gif",
			  
  			  "swerve.gif",
 			  "asl.gif",
			  "nastafied.gif",
			  "holay_craps.gif",
			  "crikey.gif",
			  "like_whoa.gif",
			  "duh.gif",
			  "hooky.gif",
			  "ridonkulus.gif",
			  "crackerbarrel.gif",

			  "oldschool.gif",
			  "lojak.gif",
			  "fubar.gif"		 ];

var quotes = [ "zuzia where are you?!", 
			  "they tell me not to, but i still drinks it!",
			  "keep it crunk.",
			  "further down the Q",
			  "i hate whores. karma is a bitch.",
			  "its time to kick back, drink some beers, and shmoke shome weed.",
			  "food is an important part of a balanced diet.",
			  "my favorite animal is steak.",
			  "life passes most people by while they’re making grand plans for it.",
			  "Diggin the scene with a gangsta lean.",
			  "now get the hell outta here 'fo i peel some bacon off ya back",
			  "snap, crizzle, pop",
			  "when the levee breaks, mama you got to move",
			  "how you gon act like my neck dont bling?",
			  "why make billions when you can make... millions?",
			  "whos the only one here who knows illegal ninja moves from the government?" ];

var rand = Math.round(( Math.random() * 32 )+1);
var randq = Math.round(( Math.random() * 16 )+1);

function randomizer() {
while ( rand > images.length ) {
rand -= images.length;
}
rand -= 1;
document.getElementById('images').background = images[rand];
}
//'"mainimages/'+images[rand]+'">'
function randomizerQ() {
while ( randq > quotes.length ) {
randq -= quotes.length;
}
randq -= 1;
document.getElementById('qotd').innerText=quotes[randq]; 
}


