jQuery(document).ready(function(){
jQuery('.checkoutNum').load('/wp-content/themes/Starkers/checkoutUpdate.php').fadeIn('slow');
jQuery('.wpsc_buy_button').click(function(){ 
	stringone = jQuery('.checkoutNum').html();
	stringone = parseFloat(stringone) + 1;
	jQuery('.checkoutNum').replaceWith('<strong class=\"checkoutNum\">' + stringone + '</strong>');
	})
;});
