$(document).ready(function() {
	$('p.bio').hide();
    $('<span class="bio-reveal" title="show/hide biography"></span>').insertAfter('div.artist h2');
	$('span.bio-reveal').toggle(function() {
    	$(this).parent().find('p.bio').slideDown();
		$(this).addClass('bio-hide');
    }, function() {
		$(this).parent().find('p.bio').slideUp();
		$(this).removeClass('bio-hide');
	});

$(".galleries-menu").hover(
	  
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );

$('#exhibitions-menu > li:not(.active)').hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover');
      }
    );

$('<span class="thickbox-icon"></span>').insertAfter('a.thickbox img');

$('a.thickbox img').hover(
      function () {
        $(this).next().addClass('hover');
      }, 
      function () {
        $(this).next().removeClass('hover');
      }
    );
});	