$(function()
{
	$.get('/blog/holiday/',
		function(data)
		{
//			console.log(data);
			$('#holiday').html(data);
		}
	);
});