$.fn.exists = function () {
    return $(this).length !== 0;
};
function show_b(el) {
	$(el).show();
    return this;
};
function hide_b(el) {
	$(el).hide();
    return this;
};

$(document).ready(function(){
	if ($(".b-lift").exists()) {
		$(".b-lift-bg").addClass("b-lift-bg_"+Math.round(Math.random()*2+1));
	};
});
