<img id="bg-image" src="images/bg-pattern-services.png">
$(function() {
$("img#bg-image").each(function(i, elem) {
var img = $(elem);
var div = $("<div />").css({
background: "url(" + img.attr("src") + ") no-repeat",
width: img.width() + "px",
height: img.height() + "px"
});
div.html(img.attr("alt"));
div.addClass("slides-fullscreen-img overlay-black");
img.replaceWith(div);
});
});