window.onload = function() {
	WhyUs = $('accTypeWhyUs');
	WhyUs.href = '#';
		
	WhyUs.onmouseover = function() {
		adv = $('accTypeWhyUsText');
		adv.style.display = "block";
		draw = $('accTypeNewsText');
		draw.style.display = "none";
		$('accTypeWhyUs').className = 'enable';
		$('accTypeNews').className = 'disable';
	}

	adv = $('accTypeNews');
	adv.href = '#';
	adv.onmouseover = function() {
		adv = $('accTypeNewsText');
		adv.style.display = "block";
		draw = $('accTypeWhyUsText');
		draw.style.display = "none";
		$('accTypeWhyUs').className = 'disable';
		$('accTypeNews').className = 'enable';
	}
}