window.addEvent('load', function() {
	if ($('t')) {
		var myElement = $(document.body);
		var myFx = new Fx.Scroll(myElement).start(0, 200);
	}
});

function selectArtistProfile(){
	var val = $('artistselect').value;
	if (val == '') location.href=base+'the_artists';
	else location.href=base+'the_artists/'+val;
}
function selectArtWork(){
	var val = $('artistselect').value;
	if (val == '') location.href=base+'the_art';
	else location.href=base+'the_art/'+val;
}
function selectArtCategory(){
	var val = $('artcategoryselect').value;
	if (val == '') location.href=base+'the_art';
	else location.href=base+'the_art/'+val;
}

function displayImage(image, el){
	Slimbox.open(base+'images/gallery/large/'+image+'.jpg', $(el).get('html'), {overlayOpacity: 0.5});
}
