// JavaScript Document
$(document).ready(function() {
	$(".thumbcategory").hide();
	$(".thumbcategory:first").show();
	$(".splash_gallery_thumb").click(function() {
		var t = $(this);
		var i = $("#splash_gallery_image");
		i.attr("src", t.attr("full"));
	});
	$(".splash_gallery_category").click(function() {
		var t = $(this);
		$(".thumbcategory").hide();
		var cat = $("#" + t.attr("category")).show();
	});
});