﻿// for the colorbox (lightbox) effect on images
$(document).ready(function () {
    //Examples of how to assign the ColorBox event to elements
    $("a[rel='lightbox']").colorbox({ scalePhotos: true, maxWidth: '90%', maxHeight: '90%', escKey: true,opacity: ".6" }); //all links with rel='lightbox' and image as child apply to this, background gets .6 opacity for body
});

