﻿
$(document).ready(function(){
$('#news').hide();				   
$("#src").load("/news/ #content",function() {
$("#content .post:lt(3)").each(function(){
var es =$(this).find("small").text();
var cs = es.replace(/年|月/ig, ".");
var date = cs.replace(/^20|日| /ig, "");
var ttl =$(this).find("h2").html();
$("#news").append('<dt>'+date+'</dt><dd>'+ttl+'</dd>');
});
$('#news').animate({width:'show'},1000);
$("#home #news dd:last").css("background-image", "none");  
});
$("#src").hide();

$("#content .post").each(function(){
var date =$(this).find.$("small").text();
var ttl =$(this).find.$("h2 q").text();
$("#news").append('<dt>'+date+'</dt><dd>'+ttl+'</dd>');
});
});