function tint(t,oo) {
		if (oo == 'on') {
			t.className = 'item hi';
		}
		else if (oo == 'off') {
			t.className = 'item';
		}
}

var delay;
//var showing = false;

function show(i,s) {
	clearTimeout(delay);
	other = (i=='meet')?'charities':'meet';	
	// this only works when we've got two submenus, 'meet' and 'charities'...
	// if the menu expands this will need to be revisited

	// In fact, we no longer need to hide the "other" as we only have one roll-over menu --
	// the Charities/Acknowledgements section has been split into two separate menu items
	//_hide(other);
	document.getElementById('sub'+i).style.visibility = 'visible';

}
function hide(i) {
	var command = "_hide('"+i+"')";
	delay = window.setTimeout(command, 100);
}
function _hide(i) {
	document.getElementById('sub'+i).style.visibility = 'hidden';
//	showing = false;
}

function hiBook(i) {
	// change this to the hi-state image once I've got them
	document.getElementById('book'+i).src = 'images/book/large_cover_'+i+'.gif';
}
function loBook(i) {
	document.getElementById('book'+i).src = 'images/book/large_cover_'+i+'.gif';
}
function openBook(i) {
	window.open ('book_popup.asp?id='+i,'book'+i,'width=420,height=400');
}
function openPack(i) {
	window.open ('pack_popup.asp?id='+i,'pack'+i,'width=400,height=400');
}
function openAllPacks() {
	window.open ('all_pack_popup.asp','allpacks','width=720,height=340');
	window.close();
}
function openAngel(i) {
	var url = 'profiles/';
	if (i==2) {
		url += 'OliviaPop.html';
	}
	else if (i == 3) {
		url += 'LucyPop.html';
	}
	else if (i == 4) {
		url += 'JamesPop.html';
	}
	else if (i == 5) {
		url += 'JonathanPop.html';
	}
	//window.open(url,'angel','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=375,height=375,left=100,top=100');
//	window.open('ASFront.asp?id=' + i,'angel','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=375,height=375,left=100,top=100');
	window.open('ASFront.asp?id=' + i,'angel','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=445,height=390,left=100,top=100');
	return false;
//window.open ('angel_popup.asp?id='+i,'angel'+i,'width=350,height=460');
}
function openTC() {
	window.open ('tc.html','tc','width=600,height=600,scrollbars=yes,resizable=yes');
}
function openPP() {
	window.open ('pp.html','pp','width=600,height=600,scrollbars=yes,resizable=yes');
}
function openDelivery() {
	window.open ('delivery.html','d','width=600,height=600,scrollbars=yes,resizable=yes');
}
