﻿
$(document).ready(function() {
    $(".GalleryImageThumbnail img").hover(function() {
        $(".GalleryImagePhoto").attr("src", $(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("href"));
        $(".PhotoLink").attr("title", $(this).attr("rating"));
    });
});
