$(document).ready(function(){
	  $('#expand').hover(
	    function () {
		  $("#sub_nav").slideDown('slow');
	    },
	    function () {
          $('#sub_nav').slideUp('slow'); 
        }
	  );
	  $('#flickr img').hover(
	    function () {
		  $(this).animate({opacity: 1}, 500 );
	    },
	    function () {
          $(this).animate({opacity: 0.6}, 500 );
        }
	  );
	  $('li.track').hover(
	    function () {
		  $(this).children('div').fadeIn('slow');
	    },
	    function () {
          $(this).children('div').fadeOut('slow');
        }
	  );
	  $('#tabs_first > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	  $('#tabs_second > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
});