﻿
$(document).ready(function() {
    $(".GalleryImageThumbnail img").hover(function() {
        //$(".GalleryImagePhoto").attr("src", $(this).attr("source"));
        $(".PhotoLink").css("background-image", "url(" + $(this).attr("source") + ")");
        $(".GalleryImagePhoto").attr("alt", $(this).attr("alt"));
        //$(".GalleryImageTitle").html($(this).attr("showtitle"));
        //$(".GalleryImageCaption").html($(this).attr("alt"));
        $(".PhotoLink").attr("href", $(this).parent().attr("source"));
        $(".PhotoLink").attr("title", $(this).attr("alt"));
    });
});

