jQuery(document).ready(function($) {
$('#my-video').backgroundVideo({
$outerWrap: $('.outer-wrap'),
pauseVideoOnViewLoss: false,
parallaxOptions: {
effect: 1.5
}
});
});
$(function() {
$(".pix img").each(function(i, elem) {
var img = $(elem);
var div = $("").css({
background: "url(" + img.attr("src") + ") no-repeat",
});
div.html(img.attr("alt"));
div.addClass("replacedImage");
img.replaceWith(div);
});
});