﻿/*
Title: Advent site - add video link javascript
Author: josh@josgherdes.com
*/

$(document).ready(function() {
    // Add click event to video links
    $('a[rel*=youtube]').click(function() {
        showVideo($(this).attr('href'), false);
        return false;
    });
});