$(document).ready(function(){
	$("#quoteContainer").load("php/randomquote.php");});

$(document).ready(function(){
	$("#updateQuote").click(function(){ 
		$("div.extrasContainer").slideUp(function() {
			$("#quoteContainer").load("php/randomquote.php");});
		$("div.extrasContainer").slideDown();});});

