// jQuery loading
$(document).ready(function(){
	$("#loading").bind("ajaxSend", function(){
	$(this).show();
	}).bind("ajaxComplete", function(){
	$(this).hide();
	});
})

function loadThumb(){
	$("#loadingThumb").load(showThumb());
}

/* 書式 ================================
$(〜).fadeIn(speed, func), $(〜).fadeOut(speed, func)
speed : 速度（"slow", "normal", "fast"かミリ秒）【省略可能】
func : エフェクトが終了した時の処理【省略可能】
==================================== */

function showThumb(){
	$("#loading").animate({opacity: "hide"}, 1000, "easeInBack");
	$("#loadedThumb").animate({opacity: "show"}, 2500, "easeInBack");
}