$(document).ready(function() {
  $(document).bind('keydown', 'ctrl+l', function() {
    window.location = 'admin/login';
  });
  
  setTimeout(function() {
    $('.flash').slideUp('slow');
  }, 2000);
  
  $('table tr:odd').addClass('odd');
  $('table thead tr td:first').css({
    '-moz-border-radius-topleft' : '5px',
    '-webkit-border-radius-topleft' : '5px'
  });
  $('table thead tr td:last').css({
    '-moz-border-radius-topright' : '5px',
    '-webkit-border-radius-topright' : '5px'
  });
  
  $('#feedback_subject').focus();
  
  $('#header span, #subheader span').css('cursor', 'default').easyTooltip({
    content: 'Coming soon.',
    xOffset: 10,
    yOffset: -20
  });
});
