	var numRand = Math.floor(Math.random()*101);

$(document).ready(function() {
	//work with the container text
	$("#quoteContainer").load("/includes/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...
	$("#Captchawrapper").slideUp(function() {
		//Then load INTO the quoteContainer div the output of testajax.cfm
		$("#quoteContainer").load("/includes/testajax.cfm?CFID=" + cfid + "&CFTOKEN=" + cftoken,numRand);
	});
	
	//And after that,execute the slide down animation
	$("#Captchawrapper").slideDown();
	
	
});

});   