$(document).ready(function() {
	$("span.pleaseclose").each(function(i){
		$(this).click(function(){
			$("#attention").slideUp("slow");
		});
	});
	
	$("#attentionpleasesingle").hide();
	$("#attentionopen").each(function(i){
		$(this).click(function(){
			$("#attentionpleasesingle").slideDown("slow");
			$(this).slideUp("slow");
		});
	});

});







