$(function(){
	$(".img_bg_fix").each(function(){
		var img_bg = escape($(this).next("input").val());
		img_bg = img_bg.replace("%3A//", "://");
		$(this).css("background","url(" + img_bg + ") center center");
	});		   
});

