$().ready(function(){
	// random quote selector
	var randomNumber=Math.floor(Math.random()*3);
	$("#quote_"+randomNumber).show();
});

