var arConfig = {
	"START_X" : 19,
	"START_Y" : 12
};

var NOMINAL = 1;

var arSteps = new Array(
	{
		"X" : -NOMINAL,
		"Y" : -NOMINAL
	},
	{
		"X" : 0,
		"Y" : -NOMINAL
	},
	{
		"X" : NOMINAL,
		"Y" : -NOMINAL
	},
	{
		"X" : NOMINAL,
		"Y" : 0
	},
	{
		"X" : NOMINAL,
		"Y" : NOMINAL
	},
	{
		"X" : 0,
		"Y" : NOMINAL
	},
	{
		"X" : -NOMINAL,
		"Y" : NOMINAL
	},
	{
		"X" : -NOMINAL,
		"Y" : 0
	}
);
$(function(){
	var ForbidenNav = /yandex|google|bing|yahoo|mini/;
	if (!ForbidenNav.test(navigator.userAgent.toLowerCase()))
	{
		$(".banner_container").each(function(){
			var _this = $(this);
			var COUNT = arSteps.length;
			var _this_title = $(".black_b", _this).html(); 
			
			for (i = 0; i < COUNT; i++) {
				_this.prepend($('<div class="white_b" style="top:' + (arConfig["START_Y"] + arSteps[i]["Y"]) + 'px; left:' + (arConfig["START_X"] + arSteps[i]["X"]) +'px;">' + _this_title + '</div>'));
			}
		});
	};
});
