﻿$(document).ready(function () {
    
    //select the vid player
    $(".videoThumbs img").click(function () {
        var index = $(this).index();
        $(".videoPlayer div").hide();
        $(".videoPlayer div:eq(" + index + ")").show();
    });

    //force the width and height of the embed
    $(".VidPlayer iframe").attr({ width: "370", height: "230" })
});


