﻿$(document).ready(function(){
	/*
	$.ajax({
		type: 'GET',
		url: 'http://pastormonteblog.blogspot.com/feeds/posts/default',
		dataType: 'xml',
		contentType: 'text/xml',
		success: function(xml) {
			$(xml).find('item').each(function(i){
				var title = $(this).find('title').text();
				var link = $(this).find('link').text();
				var description = $(this).find('description').text();
				
				var content = '<h3><a href="' +link+ '" target="_blank">' +title+ '</a></h3>';
			});
			$('#blog_feed').html(content);
		},
		error: function(XMLHttpRequest, textStatus, errorThrown) {
			$('#blog_feed').html('<!-- ' +errorThrown+ ' -->');
		}
	});
	$.get('feed.xml', {}, function(xml){
		$(xml).find('item').each(function(i){
			var title = $(this).find('title').text();
			var link = $(this).find('link').text();
			var description = $(this).find('description').text();
			
			var content = '<h3><a href="' +link+ '" target="_blank">' +title+ '</a></h3>';
		});
	});
	*/
	$('#blog_feed').rssfeed('http://pastormonteblog.blogspot.com/feeds/posts/default', {
		limit: 1,
		date: false
	});
});
