$(document).ready(function() {
	$('.artist .biog').hide();
	var status = 'shut';
	$('<a href="#" class="showhide">show biography</a>').appendTo('#artists .artist');
	$('.artist a.showhide').click(function() {
		if(status == 'shut') {
			$(this).prev().slideDown();
			status = 'open';
			$(this).text('hide biography');
			return false;
		} else {
			$(this).prev().slideUp();
			status = 'shut';
			$(this).text('show biography');
			return false;
		}
	});
	
	$('.nav a, a.top').click(function() {
		var target = $(this).attr('href');
		$.scrollTo(target,1000,{axis:'y'});
		return false;
	});
	
	$('#orderform').validate();
	
	$('#imagebox').cycle({
		speed:	700
	});
	
	$('.slideshow a').lightBox({fixedNavigation:false});
	
});
