jQuery("document").ready(function()
{
	jQuery.ajax(
	{
		url      : "http://www.omosan-st.com/blog/newest/" ,
		cache    : false           ,
		dataType : "html"          ,
		success  : function(html)
		{
			jQuery("#blogArea").html(html);
			
			jQuery("#blogArea .BlogBlock").css({cursor : 'pointer' , marginBottom:'0' , 'display':'block'}).hover(
				function()
				{
					jQuery(this).css('background' , '#FAF9F7');
				},
				function()
				{
					jQuery(this).css('background' , '#ffffff');
				}
			);
		}
	});
});
