$(document).ready(function() {
	$('#gallery > #container > #content > #theimage > img').hide();	
  $('#gallery > #container > #content > #theimage > img').fadeIn(1000);
  
 $('ul.artistlist > li').hide();
  $('h4.toggle1').click(function() {
   $('ul.hide1 > li').toggle();
    return false;
});
  $('h4.toggle2').click(function() {
    $('ul.hide2 > li').toggle();
     return false;
   });
});