function close(){
	$(".close").click(function(){
			$('.box').hide();
	});
}
function next(){
	$(".next").click(function(){
		var next = $(this).attr("id");
		$('.box').hide();
		$("#tour"+next).show();
	});
}

$(document).ready(function(){
	$("#tourbtn").click(function(){
		$.ajax({
			url: "tour.php",
			context: document.body,
			success: function(msg){
				$("#wrapper").append(msg);
				close();
				next();
			}
		});
	});

	$(".footerlinks").click(function(){
		var box = $(this).attr('id');
		$("."+box).show();
	});
	$(".cb_close_button").click(function(){
		var parent = $(this).parent();
		parent = parent.parent();
		$(parent).hide();
	});
});

