    $(document).ready(function(){

		var i=0;
	
		var url = "http://www.blogger.com/feeds/896892771959128589/posts/default";
	
		$.ajax({
    
	
	
	        type: "GET",
            url: "/global/proxy.php?url=" + escape(url),
            dataType: "xml",
            success: function(xml) {

			    $(xml).find('entry').each(function(){
			
					i++;
			
					var published = $(this).find('published').text();
					var title = $(this).find('title').text();
					var content = $(this).find('content').text();
					var id = $(this).find('id').text();
					
					var all_content = $(this).find('content').text();
					
					var paras = split( "<br />", content );
					content = strip_tags(paras[0]);
					
					date = split( "T", published );
					date = split( "-", date[0] );
					
					var title_link = urlencode(title);
					
					published = date[1] + "/" + date[2] + "/" + date[0];
									
					var summary = "<div class='summary'><h2><a href='/flip-the-switch.html?id=" + i + "' title='" + title + "'>" + title + "</a></h2><p class='date'>" + published + "</p><p>" + content + "</p><p class='readMore'><a href='/flip-the-switch.html?id=" + i + "''>Read More</a></p> <a href='flip-the-switch-archives.html'>Archives</a></div><!-- end summary -->";


					if (i == 1) {
						jQuery('#content').append(summary);
					}
					
				});
            }
        });
	});
