$(document).ready(function(){
  
  // Open certain links in a new window
  $("a[rel=external]").attr("target","_blank");

  $(".vidlink").click(function(e) {
    e.preventDefault();
    $.fancybox({
      'padding': 0,
      'autoScale': false,
      'overlayColor': '#000',
      'transitionIn': 'none',
      'transitionOut': 'none',
      'title': this.title,
      'width': 810,
      'height': 480,
      'href': this.href,
      'type': 'swf',
      'swf': {
        'wmode': 'transparent',
        'allowfullscreen': 'true'
      }
    });
  });
  
  $(".vidlink-med").click(function(e) {
    e.preventDefault();
    $.fancybox({
      'padding': 0,
      'autoScale': false,
      'overlayColor': '#000',
      'transitionIn': 'none',
      'transitionOut': 'none',
      'title': this.title,
      'width': 597,
      'height': 360,
      'href': this.href,
      'type': 'swf',
      'swf': {
        'wmode': 'transparent',
        'allowfullscreen': 'true'
      }
    });
  });
  
  $(".vidlink-sm").click(function(e) {
    e.preventDefault();
    $.fancybox({
      'padding': 0,
      'autoScale': false,
      'overlayColor': '#000',
      'transitionIn': 'none',
      'transitionOut': 'none',
      'title': this.title,
      'width': 438,
      'height': 272,
      'href': this.href,
      'type': 'swf',
      'swf': {
        'wmode': 'transparent',
        'allowfullscreen': 'true'
      }
    });
  });
  
  $(".vidlink-clip-sm").click(function(e) {
    e.preventDefault();
    $.fancybox({
      'padding': 0,
      'autoScale': false,
      'overlayColor': '#000',
      'transitionIn': 'none',
      'transitionOut': 'none',
      'title': this.title,
      'width': 438,
      'height': 272,
      'href': this.href,
      'type': 'swf',
      'swf': {
        'wmode': 'transparent',
        'allowfullscreen': 'true'
      }
    });
  });
  
  $(".vidlink-clip-med").click(function(e) {
    e.preventDefault();
    $.fancybox({
      'padding': 0,
      'autoScale': false,
      'overlayColor': '#000',
      'transitionIn': 'none',
      'transitionOut': 'none',
      'title': this.title,
      'width': 597,
      'height': 360,
      'href': this.href,
      'type': 'swf',
      'swf': {
        'wmode': 'transparent',
        'allowfullscreen': 'true'
      }
    });
  });




  
  // Hide the 'home' link in the main nav when the user's on the homepage
  $('body.home #main-nav li.current_page_item').hide();
  
});
