$(document).ready(function()
{
	$(".big_box[title='uscene']").hide();
	$(".big_box[title='other']").hide();
	
	$("a[title='block_drop']").click(function()
	{
		$(".big_box[title='block_drop']").show()
		$(".big_box[title='other']").hide();
		$(".big_box[title='uscene']").hide();
		$(".slideshow img[id='image']").attr("src", "images/block_drop/1.png");
		this.blur();
		return false;
	});
	
	$("a[title='uscene']").click(function()
	{
		$(".big_box[title='block_drop']").hide()
		$(".big_box[title='other']").hide();
		$(".big_box[title='uscene']").show();
		$(".slideshow img[id='image']").attr("src", "images/uscene/1.png");
		this.blur();
		return false;
	});
	
	$("a[title='other']").click(function()
	{
		$(".big_box[title='block_drop']").hide()
		$(".big_box[title='uscene']").hide();
		$(".big_box[title='other']").show();
		this.blur();
		return false;
	});
	
	$(".slideshow a").click(function()
	{
		var image = $(this).attr("href");
		$(".slideshow img[id='image']").attr("src", image);
		this.blur();
		return false;
	});
});
