﻿$(document).ready(function() {

    $('.HelperToolTip').tooltip({ showURL: false, fade: 250, showBody: " - " });

    $("img").error(function() {
        $(this).unbind("error").attr("src", "/images/Video/NoImage.gif");
    });

    $(".HelperToolTip").mouseover(function() {
        $(this).attr({ src: $(this).attr("src").replace('.gif', '_hover.gif') });
    });

    $(".HelperToolTip").mouseout(function() {
        $(this).attr({ src: $(this).attr("src").replace('_hover.gif', '.gif') });
    });

    $(".btClickSelectVideoFile").click(function() {
    $(".txtVideo").val($(".chkListVideos").find("input:checked").val());
        this.click();
    });

});

