$(document).ready(function()
{
	$("a[title='uscene']").click(function()
	{
		$(".big_box[title='uscene']").toggle("slow");
		this.blur();
		return false;
	});
	
	$(".slideshow a").click(function()
	{
		var image = $(this).attr("href");
		$(".slideshow img[id='image']").attr("src", image);
		this.blur();
		return false;
	});
});