// JavaScript Document
$(function(){
	$("div.navi1 a").click(function(){
		$("div.gallery1 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery1 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.navi4 a").click(function(){
		$("div.gallery4 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery4 img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi5 a").click(function(){
		$("div.gallery5 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery5 img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
$(function(){
	$("div.navi6 a").click(function(){
		$("div.gallery6 img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("div.gallery6 img:last").fadeOut("fast",function(){
			$(this).remove()
		});
		return false;
	})
})
