// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
function switcheroo(mood) {
	// Switches stylesheets and any related images/objects
	// Switch css
	setActiveStyleSheet(mood+'_style');
	// Switch title image
	// document.images['title_image'].src = 'images/title_'+mood+'.jpg';
}
function show_info() {
	var box = document.getElementById('image_info');
	box.style.display = 'block';
}
function hide_info() {
	var box = document.getElementById('image_info');
	box.style.display = 'none';
}