// JavaScript Document
// Script written for 5G website by Steve Hawkes
// email steve@stephenhawkes.co.uk




function tabbedOver(myBtn){
	document.getElementById(myBtn).style.backgroundPosition = 'right bottom';
}

function tabbedOut(myBtn){
	document.getElementById(myBtn).style.backgroundPosition = 'left bottom';
}
