$(function() {

  /* ----------------------------------------------------------------
    external links
  ---------------------------------------------------------------- */
  $("a[href^=http]").each(function() {
    if(this.href.indexOf(location.hostname) == -1) {
      $(this)
        .addClass('external')
        .click(function() {
          window.open(this.href);
          return false;
        });
    }
  });
  $("a[href$=pdf]").click(function() {
    window.open(this.href);
    return false;
  });


  /* ----------------------------------------------------------------
    images
  ---------------------------------------------------------------- */
  $('#content img').each(function() {
    var floating = $(this).attr('class');
    $(this).wrap('<div class="shadow '+ floating +'" />');
  });

  
  /* ----------------------------------------------------------------
    corners
  ---------------------------------------------------------------- */
  $('.button , button').corner('5px');

  
  /* ----------------------------------------------------------------
    striped tables
  ---------------------------------------------------------------- */
  $('table tr:odd').addClass('odd');
  $('table thead .odd, table tfoot .odd').removeClass('odd');
  
});

