// JavaScript Document
function getblog(){
jQuery(function() {
    jQuery.get(
       '/js/proxy.php?url=http://pwshop.blogspot.com/feeds/posts/summary',
        function(feed) {
			var html = '';
          $(feed).find("entry").each(function(){
              
                html += '<div class="blogtitle">'
                + '<a href="'
                + $(this).find("link[rel='alternate']").attr("href")
                + '" target="blogview">'
                + $(this).find("title").text()
                + '</a>'
                + '</div>';
                html += '<div class="updated">'
                + $(this).find("updated").text().substr(0,10)
                + '</div>';
                
            });
		
            jQuery('#bloglist').append(html);
        }    
    );
});
}
