$(function(){
  function fade_large_points() {
    $('#three_points .large_point').fadeOut('fast');
  }

  $('.small_point').mouseover(function() {
    fade_large_points();
    var large_point_id = ".large_point#" + $(this).attr('id');
    $(large_point_id).show();
    $(large_point_id + " img").hover(null, function() {
      fade_large_points();
    });
  });

  $('#home #featured_track_listing .content').hide();
  $('#home #featured_track_listing .content:first').show();
  $('#home #featured_track_listing li:first a').addClass('selected');
  $('.featured_track .buy').css('zoom', '1');

  $('ul#featured_tracks li a').click(function(){
    $('ul#featured_tracks li a').removeClass('selected');
    $(this).addClass('selected');
    $('#featured_track_listing .content').hide();
    tab = '#' + $(this).attr('id');
    tab = tab.substr(0, tab.length - 4);
    tab_content = tab + "_content";
    $(tab_content).show();
    return false;
  });

  $('.small_action_link').hover(
    function () {
      $(this).css('background-position', '0 -37px');
    },
    function () {
      $(this).css('background-position', '0 0');
    }
  );

  $('.small_action_link submit').click(function() {
    $(this).parents('form:first').submit();
  });
});
