// JavaScript Document
function initAll()
{
	activateMenu("yacbddm");
	
	if(document.getElementById("countImgPages"))
	{
		enableTooltips('block_m1_2');
		init();
	}
	
	if(document.getElementById("webcounter"))
	{
		document.getElementById("webcounter").onmouseover=function()
		{
			this.style.color = "#990000";
		}
		document.getElementById("webcounter").onmouseout=function()
		{
			this.style.color = "#ffffff";
		}
	}
}
window.onload=initAll;