<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Animal Crackers and Milk</title>
	<atom:link href="http://www.animalcrackersandmilk.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.animalcrackersandmilk.com</link>
	<description></description>
	<pubDate>Mon, 30 Aug 2010 17:43:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<div id="wpos_position">
  <div id="wpos">
    <p id="wpos_offer">
       <p><span style="font-family: Arial,Helvetica,sans-serif; font-size: medium;"><strong>How would you like some free gifts?</strong></span> <br /><span style="font-family: Arial,Helvetica,sans-serif; font-size: x-small;"> You can get 10 free gifts just by putting your name and email in the boxes below.  In a couple of days I will send you some more free goodies.</span><br />
<script src="http://forms.aweber.com/form/35/1583598335.js" type="text/javascript"></script>
</p>    </p>
        <input type="image" src="wp-content/plugins/coolpop/images/closebutton.png" name="wpos_CloseIcon" id="wpos_CloseIcon" onMouseOver="wpos.onHover()" onMouseOut="wpos.onHoverOut()" onclick="wpos.onClose()" width=32 height=32>
  </div>
</div>

<script type="text/javascript">

function wpos_setPosition() {
	//locate the box where they want it
	var posType = 'a';
	var posHAlign = 'c';
	var posVAlign = 't';
	var posBuffer = 20;
	var posWidth = 300;
	var posHeight = 450;

	var winW = 630, winH = 460;

	//find the window height and width (works with all browsers)
	if (parseInt(navigator.appVersion)>3) {
	 	if (navigator.appName.indexOf("Microsoft")!=-1) {
	  		winW = document.body.offsetWidth;
	  		winH = document.body.offsetHeight;
	 	} else {
			winW = window.innerWidth;
			winH = window.innerHeight;
		 }
	}
	
	if ( posType == 'a' ) {
		if (posHAlign == "l") {
			jQuery("#wpos").css("left",posBuffer);
		}

		//alert(posBuffer + "\r\n" + posWidth + "\r\n" + ((posBuffer + posWidth) / 2));
		if (posHAlign == "c") {
			jQuery("#wpos").css("left",(winW / 2) - ((posBuffer + posWidth) / 2));
		}

		if (posHAlign == "r") {
			jQuery("#wpos").css("left",winW - (posBuffer + posWidth + 45));
		}

		if (posVAlign == "t") {
			jQuery("#wpos").css("top",posBuffer);
		}

		//alert(posBuffer + "\r\n" + posWidth + "\r\n" + ((posBuffer + posWidth) / 2));
		if (posVAlign == "c") {
			jQuery("#wpos").css("top",(winH / 2) - ((posBuffer + posHeight) / 2));
		}

		if (posVAlign == "b") {
			jQuery("#wpos").css("top",winH - (posBuffer + posHeight + 45));
		}
		
	}

	jQuery("#wpos_CloseIcon").css("top", 5);
	var posLeftButton = jQuery("#wpos").css("left").replace("px","");
	jQuery("#wpos_CloseIcon").css("left", posWidth);
	}
	
var closeButton = '<p><button onclick="wpos.onClose()">close</button></p>';

var wpos = 
{
  show: function() 
  {
     // only show if the cookie is NOT present
     if (this.isOkToShow() && (! this.suppressed()))
     {
    	 wpos_setPosition();
		jQuery("#wpos").slideDown('slow');
     }
  },

  onNoThanks: function()
  {
     // suppress for 10 years
     this.suppress(365 * 24 * 10, 'h');
     if ('' == '') {
    	 jQuery("#wpos").fadeOut();
     } else {
     	jQuery("#wpos")
  			.html('')
       		.append(closeButton);
     }
  },
  
  onAskMeLater: function()
  {
     
	this.suppress(1, 
		      'h');

	jQuery("#wpos").fadeOut();
  },



  onClose: function()
  {
	  jQuery("#wpos").fadeOut();
	  this.incrementViewCount();
  },

  onHover: function()
  {
	  jQuery("#wpos_CloseIcon").css("opacity", 1);
  },

  onHoverOut: function()
  {
	  jQuery("#wpos_CloseIcon").css("opacity", .2);
  },


  suppress: function(delay, unit)
  {
     // now set cookie:

     var h = (unit == 'h') ? delay : 0;
     var m = (unit == 'm') ? delay : 0;
     var s = (unit == 's') ? delay : 0;
     this.setCookie("wpos_suppress", "true", (h*60*60*1000) + (m*60*1000) + (s*1000));
     
     //var now = new Date().getTime();

     //var date1 = new Date(now + (h*60*60*1000) + (m*60*1000) + (s*1000));
     //var newCookie = "wpos_suppress=true; expires=" + date1.toGMTString() + "; path=/";
     //document.cookie = newCookie;

     // second cookie (10 years)
     // because the initial and subsequent delays may be different
     //var date2 = new Date(now + (10*365*24*60*60*1000));
     //var newCookie2 = "wpos_seen=true; expires=" + date2.toGMTString() + "; path=/";
     //document.cookie = newCookie2;
  },

  suppressed: function()
  {
     return document.cookie.indexOf("wpos_suppress=true") > -1;
  },

  isOkToShow: function()
  {
	var displayCount = this.getCookie("wpos_displayCount");

	if (parseInt(displayCount) > parseInt('1'))
		return false;
	else
		return true;
	
  },

  incrementViewCount: function()
  {
	  var displayCount = this.getCookie("wpos_displayCount");

	  if (displayCount == "")
		  displayCount = 1;
	  else
		  displayCount = parseInt(displayCount) + 1;

	  this.setCookie("wpos_displayCount", displayCount, (10*365*24*60*60*1000));
	  this.suppress(24, 
		      'h');
	  
     return;
  },

  checkPopoverID: function()
  {
	  var popOverID = this.getCookie("wpos_popOverID");

	  if (popOverID != '1') {
		  this.setCookie("wpos_displayCount", '0', -(24*60*60*1000));
		  this.setCookie("wpos_suppress", '0', -(24*60*60*1000));
		  this.setCookie("wpos_popOverID", '1', (10*365*24*60*60*1000));
	  }
	  
     return;
  },

  // debug function:
  eraseCookie: function()
  {
     this.suppress(-1,0); // expire 1 day ago
     alert("cookie expired. hit refresh");
  },

  setCookie: function (c_name,value,expireminutes)
  {
	var now = new Date().getTime();
  	var exdate=new Date(now + expireminutes);
  	
  	document.cookie=c_name+ "=" +escape(value)+
  	((expireminutes==null) ? "" : ";expires="+exdate.toUTCString());
  },
  
  getCookie: function (c_name)
  {
  	if (document.cookie.length>0)
    	{
    	c_start=document.cookie.indexOf(c_name + "=");
    	if (c_start!=-1)
     		{
     		c_start=c_start + c_name.length+1;
      		c_end=document.cookie.indexOf(";",c_start);
      		if (c_end==-1) c_end=document.cookie.length;
      		return unescape(document.cookie.substring(c_start,c_end));
      		}
    	}
  	return "";
  }
};

wpos.checkPopoverID();

setTimeout('wpos.show()', 5 * 1000);

wpos.onHoverOut();
</script>
	<item>
		<title>Easy Striped Backgrounds en Fr&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2274</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2274#comments</comments>
		<pubDate>Mon, 30 Aug 2010 17:43:34 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2274</guid>
		<description><![CDATA[Easy Striped Backgrounds en Francais: Vous avez toujours voulu ajouter des styles rayés pour l’horizons de vos fon&#8230; http://bit.ly/axHBUe
]]></description>
			<content:encoded><![CDATA[<p>Easy Striped Backgrounds en Francais: Vous avez toujours voulu ajouter des styles rayés pour l’horizons de vos fon&#8230; http://bit.ly/axHBUe</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2274</wfw:commentRss>
		</item>
		<item>
		<title>Had a nice 90 minute tour arou&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2273</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2273#comments</comments>
		<pubDate>Sun, 29 Aug 2010 22:37:20 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2273</guid>
		<description><![CDATA[Had a nice 90 minute tour arou…: Had a nice 90 minute tour around the resort on a segway Tweet This PostRelated Po&#8230; http://bit.ly/bjWlnY
]]></description>
			<content:encoded><![CDATA[<p>Had a nice 90 minute tour arou…: Had a nice 90 minute tour around the resort on a segway Tweet This PostRelated Po&#8230; http://bit.ly/bjWlnY</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2273</wfw:commentRss>
		</item>
		<item>
		<title>7 Habits Of Highly Successful &#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2272</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2272#comments</comments>
		<pubDate>Sun, 29 Aug 2010 16:33:33 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2272</guid>
		<description><![CDATA[7 Habits Of Highly Successful Internet Marketers: Discover The 7 Habits of the Highly Successful Internet Marketer&#8230; http://bit.ly/bevwdQ
]]></description>
			<content:encoded><![CDATA[<p>7 Habits Of Highly Successful Internet Marketers: Discover The 7 Habits of the Highly Successful Internet Marketer&#8230; http://bit.ly/bevwdQ</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2272</wfw:commentRss>
		</item>
		<item>
		<title>Sitting on the western Marylan&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2271</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2271#comments</comments>
		<pubDate>Sun, 29 Aug 2010 15:18:16 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2271</guid>
		<description><![CDATA[Sitting on the western Marylan…: Sitting on the western Maryland railroad for a 3 1/3 tour with a steam engine. Tw&#8230; http://bit.ly/b9wwuP
]]></description>
			<content:encoded><![CDATA[<p>Sitting on the western Marylan…: Sitting on the western Maryland railroad for a 3 1/3 tour with a steam engine. Tw&#8230; http://bit.ly/b9wwuP</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2271</wfw:commentRss>
		</item>
		<item>
		<title>Nice day in western Maryland f&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2270</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2270#comments</comments>
		<pubDate>Sat, 28 Aug 2010 18:43:34 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2270</guid>
		<description><![CDATA[Nice day in western Maryland f…: Nice day in western Maryland for a 3 1/2 mile horse rude in the moutons. Just a l&#8230; http://bit.ly/bya9FN
]]></description>
			<content:encoded><![CDATA[<p>Nice day in western Maryland f…: Nice day in western Maryland for a 3 1/2 mile horse rude in the moutons. Just a l&#8230; http://bit.ly/bya9FN</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2270</wfw:commentRss>
		</item>
		<item>
		<title>How To Boost Your Metabolism A&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2269</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2269#comments</comments>
		<pubDate>Sat, 28 Aug 2010 15:33:40 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2269</guid>
		<description><![CDATA[How To Boost Your Metabolism And Lose Weight: Get ready to boost your metabolism to burn calories at a rate you’ve&#8230; http://bit.ly/cc7O3N
]]></description>
			<content:encoded><![CDATA[<p>How To Boost Your Metabolism And Lose Weight: Get ready to boost your metabolism to burn calories at a rate you’ve&#8230; http://bit.ly/cc7O3N</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2269</wfw:commentRss>
		</item>
		<item>
		<title>226 Order Buttons: Professiona&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2268</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2268#comments</comments>
		<pubDate>Fri, 27 Aug 2010 14:49:01 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2268</guid>
		<description><![CDATA[226 Order Buttons: Professional Order Buttons – The Fastest And Easiest Way To Instantly Boost Your Sales! Read Mo&#8230; http://bit.ly/a5neB1
]]></description>
			<content:encoded><![CDATA[<p>226 Order Buttons: Professional Order Buttons – The Fastest And Easiest Way To Instantly Boost Your Sales! Read Mo&#8230; http://bit.ly/a5neB1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2268</wfw:commentRss>
		</item>
		<item>
		<title>SiteFling Local Marketing Tool&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2267</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2267#comments</comments>
		<pubDate>Thu, 26 Aug 2010 13:33:40 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2267</guid>
		<description><![CDATA[SiteFling Local Marketing Toolkit: If you are in the “Offline to Online” business this is the must have package of&#8230; http://bit.ly/dnp8G4
]]></description>
			<content:encoded><![CDATA[<p>SiteFling Local Marketing Toolkit: If you are in the “Offline to Online” business this is the must have package of&#8230; http://bit.ly/dnp8G4</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2267</wfw:commentRss>
		</item>
		<item>
		<title>Version 2.0 of Internet Page B&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2266</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2266#comments</comments>
		<pubDate>Thu, 26 Aug 2010 04:38:45 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2266</guid>
		<description><![CDATA[Version 2.0 of Internet Page Builder Coming Soon!: We wanted to give one more blowout deal before we release 2.0. &#8230; http://bit.ly/aCWlSI
]]></description>
			<content:encoded><![CDATA[<p>Version 2.0 of Internet Page Builder Coming Soon!: We wanted to give one more blowout deal before we release 2.0. &#8230; http://bit.ly/aCWlSI</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2266</wfw:commentRss>
		</item>
		<item>
		<title>Aweber Unsub Script for RAP: S&#8230;</title>
		<link>http://www.animalcrackersandmilk.com/?p=2265</link>
		<comments>http://www.animalcrackersandmilk.com/?p=2265#comments</comments>
		<pubDate>Wed, 25 Aug 2010 21:26:45 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.animalcrackersandmilk.com/?p=2265</guid>
		<description><![CDATA[Aweber Unsub Script for RAP: Script to unsubscribe a canceled member from an associated aweber autoresponder email&#8230; http://bit.ly/a9GFAe
]]></description>
			<content:encoded><![CDATA[<p>Aweber Unsub Script for RAP: Script to unsubscribe a canceled member from an associated aweber autoresponder email&#8230; http://bit.ly/a9GFAe</p>
]]></content:encoded>
			<wfw:commentRss>http://www.animalcrackersandmilk.com/?feed=rss2&amp;p=2265</wfw:commentRss>
		</item>
	</channel>
</rss>
