﻿$(document).ready(function () {
    $('.VideoThumb img').click(function () {
        $('#MainVideoArea div').hide();
        var overlayClass = $(this).attr('id');
        $('.' + overlayClass).show();
    });

});

$(document).ready(function () {
    $('.PhotoThumb img').click(function () {
        $('#MainVideoArea div').hide();
        var overlayClass = $(this).attr('id');
        $('.' + overlayClass).show();
    });

});
