window.addEvent('domready', function() {
	if ($('reg_select') && $$('.location_link')) {
		var box  = $('reg_select');
		var lclose = $('location_close');
		$$('.location_link').each(function(el) {
			el.addEvent('click', function(e) {
				if( Browser.Engine.trident ) window.event.cancelBubble = true;
				else e.stopPropagation();
				document.addEvent('click', function() { box.addClass('hide'); });
				var status = box.getProperty('class');
				var lsize = el.getPosition();
				box.setStyles({
					position: 'absolute', 
					top: (lsize.y + 15) + 'px', 
					left: (lsize.x - 16) + 'px', 
					'z-index': 1000
				});
				if (status != 'hide') {
					box.addClass('hide');
					return false;
				}
				box.removeClass('hide');
				if ($$('.setarea')) {
					$$('.setarea').each(function(sa) {
						sa.addEvent('click', function() {
							area_id = sa.getProperty('rel');
							Cookie.write("rsmetalarea", area_id, {
								duration: 365,
								path: "/",
								domain: "rs-energy.ru"
							});
							window.location.href = window.location.href;
							box.addClass('hide');
							return false;
						});
					});
				}
				return false;
			});
		});
		lclose.addEvent('click', function() { box.addClass('hide'); return false; });
	}
});
