// navigation roll overs
function menu_nav(){
	menu_ar = new Array();
	for (var i=0;i<arguments.length;i++){
		menu_ar[arguments[i]] = new Array();
		menu_ar[arguments[i]]['off'] = new Image();
		menu_ar[arguments[i]]['over'] = new Image();
		menu_ar[arguments[i]]['off'].src = "uploads/images/structure/nav-"+arguments[i]+".gif";
		menu_ar[arguments[i]]['over'].src = "uploads/images/structure/nav-"+arguments[i]+"-ro.gif";
	}
}

menu_nav("home","about","songs","mp3s","videos","photos","calendar","booking");

function menu_over(which){
	document.images[which].src = menu_ar[which]['over'].src;
}

function menu_out(which){
	document.images[which].src = menu_ar[which]['off'].src;
}


// content mouseovers
function HideThumbRo(id) {
     document.getElementById(id).style.display = "none";
}
function ShowThumbRo(id) {
     document.getElementById(id).style.display = "block";
}

function popUpPlayer(URL) {
	win1 = window.open(URL, URL, "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=237,height=422,left=40,top=40");
}

