

$(document).ready(function(){ 
	
  $('ul.galleries a img').hover(
    function() {
      $(this).fadeTo("fast", 0.5);
      var artist = $(this).parent().attr("href");
      artist = 'a[@href=' + artist + ']';
      $(artist).addClass("sel");
    },
    function() {
      $(this).fadeTo("fast", 1.0);
      var artist = $(this).parent().attr("href");
      artist = 'a[@href=' + artist + ']';
      $(artist).removeClass("sel");
    }
  );
  $('ul.artists a').hover(
    function() {
      $(this).addClass("sel");
      var artwork = $(this).attr("href");
      artwork = 'a[@href=' + artwork + ']';
      $(artwork).children().fadeTo("fast", 0.5);
    },
    function() {
      $(this).removeClass("sel");	
      var artwork = $(this).attr("href");
      artwork = 'a[@href=' + artwork + ']';
      $(artwork).children().fadeTo("fast", 1.0);
    }
  );

  $('ul.galleries a')
    .mouseover(function(){ window.status = $(this).attr('href'); })
    .mouseout(function(){ window.status = ''; });

  $('ul.artists a')
    .mouseover(function(){ window.status = $(this).attr('href'); })
    .mouseout(function(){ window.status = ''; });

});