// JavaScript Document

<!--
	$(document).ready(function(){
		$("#controller a").click(function(){
			$("#picBox img").hide().attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});
			$("#picBox h2").html($("> img", this).attr("title"));
			return false;
		});
		$("#picBox>img").load(function(){$("#picBox>img:hidden").fadeIn("slow")});
	});

//-->
