window.addEvent('domready',function(){
	if($('webTitanBusinessA'))
		$('webTitanBusinessA').addEvent('mouseenter',function(e){
			var ev = new Event(e);
			ev.stop();
			showBus();
		});
	if($('webTitanEducationA'))
		$('webTitanEducationA').addEvent('mouseenter',function(e){
			var ev = new Event(e);
			ev.stop();
			showEdu();
		});
})

function showBus()
{
	var box1 = $('webTitanBusiness');
	var box2 = $('webTitanEducation');
	box1.setStyle('display', 'block');
	$('webTitanBusinessA').getParent().addClass('active');
	box2.setStyle('display', 'none');
	$('webTitanEducationA').getParent().removeClass('active');

}

function showEdu()
{
	var box1 = $('webTitanBusiness');
	var box2 = $('webTitanEducation');
	box1.setStyle('display', 'none');
	$('webTitanBusinessA').getParent().removeClass('active');
	box2.setStyle('display', 'block');
	$('webTitanEducationA').getParent().addClass('active');
}