$(document).ready(function(){
	$(".panel").hide();
	$(".description").hide();
	$(".pan0").show();
	 
	$(".thumbs a").click(function(){	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		$("#largeImg").attr({ src: largePath, alt: largeAlt });		
		//$("#largeImg").fadeIn(400);		
		return false;
	});
	
	$(".catbutton").click(function(){	
		var cl="." + $(this).attr("rel");
		$(".panel").hide();
		$(".description").hide();
		$(cl).show();		
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });		
		return false;
	});
	
});
