function openShadowbox(content, player, title){
    Shadowbox.open({
        content:    content,
        player:     player,
        title:      title,
        height:     360,
        width:      640
    });
}
function openGallery() {
    var options = {
        gallery: "sponsorPhotos",
        continuous: true,
        counterType: "skip"
    };
    // create an image object(s)
    var image1 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0147.jpg", options: options };
    var image2 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0150.jpg", options: options };
    var image3 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0198.jpg", options: options };
    var image4 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0201.jpg", options: options };
    var image5 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0209.jpg", options: options };
    var image6 = { player: "img", title: "Wildlife Sponsor Photo", content: "/public/images/wildlife/IMG_0386.jpg", options: options };
    
    Shadowbox.open([image1, image2, image3, image4, image5, image6]);
}

$(function() {
  $(".showVideo").click(function() {
    openShadowbox($(this).attr('href'), 'flv', $(this).attr('title'));
  });
});


