

var quote = {
	
	choose : function(){
		choices = new Array(4);
		index = new Number;
		choices[0] = "quote1";
		choices[1] = "quote2";
		choices[2] = "quote3";
		choices[3] = "quote4";
		
		index = Math.floor(Math.random() * choices.length);
		
		var el = document.getElementById(choices[index]);
		el.style.display="block";
					
	}
	
};