$(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() + 20; // Width of the ad container.
	var adCookie = "ad-example"; // Name of the cookie to be set.

	function openAd() {
		$(popOut).width(adWidth+"px");
		$(adBox).animate({marginLeft: "0"},1200)
		$.cookie(adCookie, null);
	}
	
	function closeAd() {
		$(adBox).animate({marginLeft: "+"+adWidth+"px"},1200,"linear",
			function(){ $(popOut).width(); }
		);
		$.cookie(adCookie,'closed',{expires: 28});
	}
	$("#close").click(function() {
		closeAd();
		return false;
	});	
	
	if(!$.cookie(adCookie)) {
		$(popOut).animate({opacity: 1.0}, 500, "linear", openAd);
	}
});
