// JavaScript Document
 $(document).ready(function() {
	 	$(".pane-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});


$('#gallery div').hide();
$('#gallery div.show').show();
$('#link01').show();
$('#changeText01').css('color','#558C74');

$("#left a").click(function(e) {
	$('#left a').css('color','#A8CC6A');
	$('#'+e.target.id).css('color','#558C74');
	$('#gallery div').hide();
	$('#gallery div.show').show();
	//start and end of animation is after the .css
	$('#'+e.target.id.replace('changeText', 'link')).css({opacity:"0", display:"block"}).animate({opacity:"1"},"slow"); 
	
});
	

	});
