function bannerOver(obj)
{
	obj.style.backgroundImage = obj.style.backgroundImage.replace(/(-on)?.jpg/, '-on.jpg');
}

function bannerOut(obj)
{
	obj.style.backgroundImage = obj.style.backgroundImage.replace(/(-on)?.jpg/, '.jpg');
}

function tbannerSwitch(obj)
{	// если это не "активный" раздел
	//if (obj.lastChild.src.indexOf('-1-on.jpg') == -1){		obj.lastChild.src = obj.lastChild.src.indexOf('-on.jpg') != -1 ? obj.lastChild.src.replace(/-on.jpg/, '.jpg') : obj.lastChild.src.replace(/.jpg/, '-on.jpg');
	//}
}

// Открытие блока из "Пресс-службы"
function openPressSection(obj, id)
{	var content = document.getElementById('press-section-' + id);
	var div = document.getElementById('press-content');
	
	// ищем родителя
	var p = obj;
	while (p.className != 'c-r' ) p = p.parentNode;
	// закрываем все секции
	for(var i=0; i< p.childNodes.length; i++){		if(typeof p.childNodes[i].id != 'undefined' ? p.childNodes[i].id.indexOf('press-section-') != -1 && p.childNodes[i].id != 'press-section-'+id : 0) p.childNodes[i].className = 'hidden';
	}
	
	if (content && div){		//div.innerHTML = div.innerHTML == content.innerHTML ? '' : content.innerHTML;
		content.className = content.className == 'hidden' ? 'visible' : 'hidden';
	}
}

// Подкраска кнопок
function buttonSwitch(obj)
{	obj.className = obj.className == 'button_over' ? 'button' : 'button_over';
}
