// JavaScript Document

$(function(){
	$(".left a").click(function(){
		$("#main_left img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("#main_left img:last").fadeOut("slow",function(){
			$(this).remove();
		});
		return false;
	});
});

$(function(){
	$(".right a").click(function(){
		$("#main_right img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("#main_right img:last").fadeOut("slow",function(){
			$(this).remove();
		});
		return false;
	});
});
