$(function(){
/*
	$("#wrap_main_image").html($("p").get().reverse());

	$("#wrap_main_image p").hover(function(){
		$(this).stop(true, true);
	},function(){
		crossFade();
	})
*/

	function crossFade(){
			$("p:last").delay(3000).fadeOut(function(){
					$(this).prependTo("#wrap_slide_image").show()
					crossFade();
			})
	}
	crossFade();
})



