Event.observe(window, 'load', tabInit, false);
function tabInit(){
     Event.observe('calc', 'mouseover', showCalc, false);
     Event.observe('calc', 'mouseout', hideTabText, false);
     Event.observe('summary', 'mouseover', showSummary, false);
     Event.observe('summary', 'mouseout', hideTabText, false);
     Event.observe('extra', 'mouseover', showExtra, false);
     Event.observe('extra', 'mouseout', hideTabText, false);
     Event.observe('onsite', 'mouseover', showOnsite, false);
     Event.observe('onsite', 'mouseout', hideTabText, false);
}
function showCalc(e){
	$('tabText').style.display = 'block';
	$('tabText').className = 'calc';
	$('tabText').innerHTML = '<p>Our unique web calculator allows you to obtain an instant quote for our IT waste disposal service.  You can also place an order online.</p>';
}
function showSummary(e){
	$('tabText').style.display = 'block';
	$('tabText').className = 'summary';
	$('tabText').innerHTML = '<p>Check out our services at a glance.</p>';
}
function showExtra(e){
	$('tabText').style.display = 'block';
	$('tabText').className = 'extra';
	$('tabText').innerHTML = '<p>Additional optional dedicated services that can be added to our standard services or taken out on their individually.</p>';
}
function showOnsite(e){
	$('tabText').style.display = 'block';
	$('tabText').className = 'onsite';
	$('tabText').innerHTML = '<p>For those customers who would like to purchase our standard services, but would prefer for all disposal work to be carried out at their premises.</p>';
}
function hideTabText(e){
	$('tabText').style.display = 'none';
	$('tabText').className = '';
}