window.onload = function(){
	cabinet_button = document.getElementById('cabinet_button');
	if (cabinet_button) {
		cabinet_button.onclick = function(){
			document.location.href='/profile/cabinet/';
		}
	}
	
	reg_button = document.getElementById('reg_button');
	if (reg_button) {
		reg_button.onclick = function(){
			document.location.href='/profile/registration/';
		}
	}

	banners = document.getElementsByClassName('banners');
	for (var i=0; i<banners.length; i++) {
		url = banners[i].getAttribute('id');
		banners[i].onclick = function(){
			lookup_b(url);
		}
	}
}
