/*function tabRolls() {
	xImgRollSetup('/static/img/tabs/','-over','.gif','home','for-you','why-online','about','faqs');
}
xAddEventListener(window,'load',tabRolls);*/
function showPop(id) {
	e = xGetElementById(id);
	if (e) {
		xShow(e);
	}
}
function hidePop(id) {
	e = xGetElementById(id);
	if (e) {
		xHide(e);
	}
}

function sendPop()
{
document.getElementById('sendPop').style.display = 'block';
}
function sendPopClose()
{
document.getElementById('sendPop').style.display = 'none';
}

function checkTab(q)
{
var c = document.getElementById(q);
var e = document.getElementById(q+'Parent');
var f = document.getElementById('tabBox');
replaceTab(q);

e.removeChild(c);
//f.removeChild(e);
}

function replaceTab(q)
{
//alert(q);
var e = document.getElementById(q+'Parent');
var c = document.createElement('img');
c.src = '/static/img/tabs/'+q+'-on.gif';
c.id = q;
c.alt = q;
e.appendChild(c);
//e.attachEvent('onmouseover', killIt)
}
function mousey(g)
{
var k = document.getElementById(g);
//alert(g);
k.src = '/static/img/tabs/'+g+'-over.gif';
}
function mousey2(g)
{
var k = document.getElementById(g);
//alert(g);
k.src = '/static/img/tabs/'+g+'.gif';
}



var gradOn = document.getElementById('gradSwap');
//console.log(gradOn);	
function gradSwap()
{

//alert(gradOn);	
gradOn.innerHTML = 'You\'re invited to come to the Big Apple and join fellow Allen School students for a cap and gown graduation ceremony. Bring your camera. Bring your family. We\'d really like to see you. In fact, just tell us you’re coming and we\'ll make all the arrangements. Ask your Career Planner for details.';
return false;
}
function gradReplace()
{
gradOn.innerHTML = '<img src="../static/img/grad.invite.jpg" alt="" />';
}
xAddEventListener(gradOn , 'mouseover', gradSwap);
xAddEventListener(gradOn , 'mouseout', gradReplace);