jQuery.noConflict();

jQuery(document).ready(function() {
	// jQuery.ajaxSetup({cache:false});
	jQuery('body').append('<div id="footerad"></div>');
	jQuery('#footerad').css({
		'bottom': 0,
		'display': 'none',
		'position': 'fixed',
		'width': '100%',
		'z-index': '9999'
	});
	jQuery('#footerad').load('/campaigns/book_sale/footerad.php?src=' + thissite,function() {
		jQuery('#footerad').hide().delay(3000).slideDown('slow');
		jQuery('#footerad .content').append('<a class="close" href="#close">close</a>')
		jQuery('#footerad .close').click(function(ev) {
			ev.preventDefault();
			jQuery('#footerad').slideUp('slow');
		});
	});
});
