﻿$(document).ready(function() {
    $(".smlImg").hover(
                function() {
                    var title = $(this).find('img').attr("alt");
                    var imgurl = $(this).find('img').attr("src");
                    $('#spanLabel').text(title);
                    $('#imgMain').attr('alt', title);
                    $('#imgMain').attr('src', imgurl.replace('1.jpg', '.jpg'));
                },
                function() {
                    //Nothing Here
                }
            );
    $("#spanLabel").hover(
                function() {
                    $('#spanLabel').text('Mouse over image for details...');
                    $('#imgMain').attr('alt', 'Main Image');
                    $('#imgMain').attr('src', 'assets/FlickerImages/default.jpg');
                },
                function() {
                }
            );
});