//Personal-Index Event and Function Wire-up
$('document').ready( function () {
	var noCache = 0;
	$('#newQuotation').click(function () {
		$('#randomQuoteSpace').load("htmlRandomBlogQuotation.php", "id=randomQuoteSpace&noCache=" + noCache);
		noCache++;
	});	
})

