$("html").addClass("js");
$(document).ready(function(){
    
    //click on video poster frame
    if($(".infoitem.video")) {
        $(".infoitem.video .videotitle").click(function(){
            $(this).animate({opacity:0}, 1000, function(){
                $(".infoitem.video div").css("display","block");
                $(".infoitem.video .videoframe").fadeOut(3750);
                $(this).css("z-index","7");
            });
        });
    }

});  // end initializations
