﻿///<reference path="jquery-1.3.1.js" />

$(window).load(function() {
	$("body").fadeIn(400);
	var entries = $.post("./MostRecentPost.asmx/getPost", "", function(data) {
		$("#inner").html($(data).text())
		.hide()
		.css({ 'background-color': 'white',
			'color': 'black'
		})
		.fadeIn(600);
	});
});