/**
 * @author Jerah Regualos/
 */

//alert('this is javascript');

var home;
var staff;
var jacquie;
var trisha;
var erika;
var rhonda;
var erin;


function set_globals() {
	home = document.getElementById('home');
	staff = document.getElementById('staff');
	jacquie = document.getElementById('jacquie');
	trisha = document.getElementById('trisha');
	erika = document.getElementById('erika');
	rhonda = document.getElementById('rhonda');
	erin = document.getElementById('erin');
	
	
}

	


//window.onload = set_globals();
 
function hide_all() {
	set_globals();
 	home.style.display = 'none';
	staff.style.display = 'none';
	jacquie.style.display = 'none';
	trisha.style.display = 'none';
	erika.style.display = 'none';
	rhonda.style.display = 'none';
	erin.style.display = 'none';
	
	ap.style.display = 'none';
	
	
 }


function home_on() {
	set_globals();
 	hide_all();
	home.style.display = 'block';
	staff.style.display = 'none';
	
 }
 
function staff_on() {
	set_globals();
 	hide_all();
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 function jacquie_on() {
	set_globals();
 	hide_all();
	jacquie.style.display = 'block';
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 function trisha_on() {
	set_globals();
 	hide_all();
	trisha.style.display = 'block';
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 function erika_on() {
	set_globals();
 	hide_all();
	erika.style.display = 'block';
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 function rhonda_on() {
	set_globals();
 	hide_all();
	rhonda.style.display = 'block';
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 function erin_on() {
	set_globals();
 	hide_all();
	erin.style.display = 'block';
	staff.style.display = 'block';
	home.style.display = 'none';
	
	
 }
 

 
 

 /* For button */

function swapimage_over(id, file) {
	if (document.getElementById) {
		var img = document.getElementById(id);
		img.src = file;
	}
}

function click () {
	
}

function out() {	
}