﻿// site specific javascript

$(document).ready(function() {
    // Select all links that contains lightbox in the attribute rel
    $("a[rel*='lightbox']").lightBox({
        fixedNavigation: true
    });
});