function switchGallery(tohide,toshow) {
	$(tohide).hide('slow');
	$(toshow).show('slow');
}