Array.prototype.max = function() {
    return Math.max.apply(null, this);
};


$(document).ready(function(){


// blur links
$('a').focus(function() {
  this.blur();
});



});
