/****************************************************************************************************
	chloe 
	
	Built with jQuery - http://jquery.com
	
	Build-A-Bear Workshop

	Created by the friendly folks at Happy Cog
	http://www.happycog.com/
****************************************************************************************************/
(function($){
	
	$.fn.chloe = function(options) {

		var defaults = {};
		var options = $.extend(defaults, options);
		
			return this.each(function() {
				if (!$.cookie('hide_chloe')){
				    var chloe = $(this);
				    chloe.wrapInner('<div id="chloe-wrapper"><div id="chloe-message"></div></div><a href="#" id="chloe-close">Close</a>');
				    chloe.find("#chloe-close").click(function(){
				      chloe.stop().animate({"left":"-300px"}, 500, "linear", function() { chloe.css({"display":"none"}); });
				      $.cookie("hide_chloe", true, { expires: 1 });
				      return false;
				    });
				    chloe.css({"display":"block"}).stop().animate({"left":"0"}, 500);
				}
			});
		
			

	};
	
})(jQuery);