$(function() {
  
  $(".artist_index .crop img").each(function(){
    $(this).cjObjectScaler({
      method: "fill",
      fade: 300
    });
  });

  $(".newsletter .text-field.email").one("focus", function(){
    $(this).attr('value','');
  });

  $(".discography select#artists").bind('change', function() {
    window.location = '/discography?show=' + $(this).attr('value');
  });

});

