/* Tween for Tab1 */ 
function motionOverA()
{
	tTab1 = new Tween(document.getElementById('tab1').style,'width',Tween.regularEaseOut,43,293,0.2,'px'); tTab1.start();
}


function motionOutA()
{	
	tTab1 = new Tween(document.getElementById('tab1').style,'width',Tween.regularEaseIn,293,43,0.2,'px'); tTab1.start();
}

/* Tween for Tab2 */
function motionOverB()
{	
	tTab2 = new Tween(document.getElementById('tab2').style,'width',Tween.regularEaseOut,86,336,0.2,'px'); tTab2.start();
}


function motionOutB()
{
	var width = document.getElementById('tab1').offsetWidth;
	tTab2 = new Tween(document.getElementById('tab2').style,'width',Tween.regularEaseIn,336,86,0.2,'px'); tTab2.start(); 
}

/* Tween for Tab3 */ 
function motionOverC()
{
	tTab3 = new Tween(document.getElementById('tab3').style,'width',Tween.regularEaseOut,129,379,0.2,'px'); tTab3.start();
}


function motionOutC()
{
	var width = document.getElementById('tab1').offsetWidth;
	
	tTab3 = new Tween(document.getElementById('tab3').style,'width',Tween.regularEaseIn,379,129,0.2,'px'); tTab3.start();
}
