google.load("feeds", "1");
function initialize() {
	$(function(){

		var rssURL="http://blog.ph-creative.com/syndication.axd";
		var feed = new google.feeds.Feed(rssURL);
		feed.load(function(result) {
			if (!result.error) {
				$(".blog_links").html("");
				for (var i=0;i<1;i++) {
					var entry = result.feed.entries[i];
					var content = entry.title.substr(0,55).replace(/<(?:.|\s)*?>/g,"");						
					$(".blog_links").append("<div class='blog_post'><div class='title'>"+entry.title+"</div><div class='desc'>"+entry.content+"</div><div class='view_more'><a href='"+entry.link+"'>>View more</a></div></div>");
				}
			}
		});
	});
}
google.setOnLoadCallback(initialize);
