$(document).ready(function() {
	var popOut = "#popout"; // Name of the popout container.
	var adBox = "#adbox"; // Name of the animated bit of the ad.
	var adWidth = $(adBox).width() + $("#cap").width(); // Width of the ad container.

	function openAd() {
		$(popOut).width(adWidth+"px");
		$(adBox).animate({marginLeft: "0"},1200)
	}

	function closeAd() {
		$(adBox).animate({marginLeft: "-"+adWidth+"px"},600,"linear",
			function(){ $(popOut).width($("#cap").width() + "px"); }
		);
	}

	$("#open").click(function() {
		openAd();
		return false;
	});
	$("#close").click(function() {
		closeAd();
		return false;
	});

	$(popOut).animate({opacity: 1.0}, 1500, "linear", openAd);
});
