// Image switcher
var base= "../images/"
var normal = new Array();
var onmouseov = new Array();
var stuff = new Array('yoga','schedule', 'shop', 'partners', 'directions', 'photoalbum');
if (document.images) {
	for (i=0;i<stuff.length;i++) {
		normal[i] = new Image;
		normal[i].src = base + stuff[i] + "-out.gif"
		onmouseov[i] = new Image;
		onmouseov[i].src = base + stuff[i] + "-over.gif";
	}
}
function over(no) {
	if (document.images) {
		document.images[stuff[no]].src = onmouseov[no].src
	}
}
function out(no) {
	if (document.images) {
		document.images[stuff[no]].src = normal[no].src
	}
}
function hideDiv(box){ 
var	div=document.getElementById(box); 
	div.style.visibility="hidden";
}

