	var numRand = Math.floor(Math.random()*101);

$(document).ready(function() {
	//work with the container text
	$("#quoteContainer").load("/lib/testajax.cfm?CFID=" + cfid + "&CFTOKEN=" + cftoken,numRand);
});

$(document).ready(function() {

//Work on pushing the refresh image link
$("#refreshimage").click(function() {
		
	//Use the Slide Up Animation to close the #wrapper div...
	$("div#wrapper").slideUp(function() {
		//Then load INTO the quoteContainer div the output of testajax.cfm
		$("#quoteContainer").load("/lib/testajax.cfm?CFID=" + cfid + "&CFTOKEN=" + cftoken,numRand);
	});
	
	//And after that,execute the slide down animation
	$("div#wrapper").slideDown();
	
	event.preventDefault();
});

});   