$(document).ready(function(){															 
	$('#thumbs > div > a').click(function () { 
      var toshow = this.className;			
			$('#left-col > div').hide();	
			$('#panel-' + toshow).show();
			$('#big-pic').attr('src','images/slideshow/pic-' + toshow + '.jpg');			
			return false;
    });	
});
