	$(document).ready(function(){
		$('.bio-more').hide();
		$('a.gotobio').text("expand/collapse");
		$('a.gotobio').click(function(){
			$('.bio-more').slideToggle(300);
			$('.bio-more p').css({backgroundColor: 'white'});
			return false;
		});
		$('#artist-gallery a').lightBox();
		
	});
