$(function(){
	$('.slide').each(function(){
		var pos = $(this).prev().attr("id");
		$(this).wrapInner($('<div class="roll">'));
		$(this).prepend('<a href="#'+pos+'" class="btn">見る</a>');
		
	});
	$('.btn').click(function(){
		$(this).siblings("div.roll").slideToggle("normal",
			function(){
				if($(this).css("display") == "none"){
					$(this).siblings(".btn").text("見る");
				}else{
					$(this).siblings(".btn").text("閉じる");
				}
			}
		);
		
		return false;
	});
	
	var httpObj = jQuery.get("http://perfect-love.net/new/", null, function(){
		$("#newsspace .body p").html(httpObj.responseText);
	});

});

