// JavaScript Document
$(function(){
	$("div.navi a").click(function(){
		$("div.gallery img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi2 a").click(function(){
		$("div.gallery2 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery2 img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi3 a").click(function(){
		$("div.gallery3 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery3 img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi_yoko a").click(function(){
		$("div.gallery_yoko img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery_yoko img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi2_yoko a").click(function(){
		$("div.gallery2_yoko img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery2_yoko img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi3_yoko a").click(function(){
		$("div.gallery3_yoko img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery3_yoko img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})

