﻿$(function () {

    $(".galleryThumbnail").hover(function () {
        var id = $(this).children().attr('id');
        var url = "images/gallery/" + id + ".jpg";
        $("#galleryImage").children().attr('src', url);
    });

});
