var dge=document.getElementById;

function ToggleDiv(a,b) {
	if(!dge)return;

	document.getElementById('hp-switch-item-1').style.display='none' ;
	document.getElementById('hp-switch-item-2').style.display='none' ;
	document.getElementById('hp-switch-item-3').style.display='none' ;

	document.getElementById('hp-switch-control-1').className='hp-switcher-control-off' ;
	document.getElementById('hp-switch-control-2').className='hp-switcher-control-off' ;
	document.getElementById('hp-switch-control-3').className='hp-switcher-control-off' ;

	document.getElementById(b).className='hp-switcher-control-on' ;

	document.getElementById(a).style.display =
	(document.getElementById(a).style.display=='block')?
	'none':'block';

	return false;
}