function showQuotes(){
	 intItem1 = Math.floor(Math.random()*10);
	 intItem2 = Math.floor(Math.random()*10);
	 document.getElementById( "qb" + intItem1 ).style.display = "block";
	 document.getElementById( "qb" + intItem2 ).style.display = "block";
}
