/* menu rollovers */

function rollOver(id) {
	document.getElementById(id).className = 'up';
}

function rollOut(id) {
	document.getElementById(id).className = '';
}

/* end menu rollovers */

/* gallery popups */

function pop(name,side) {
	popup=window.open('images/figurines/'+name+'_'+side+'.jpg','preview','height=670,width=500');
	if (window.focus) {
		popup.focus()
	}
	return false;
}

function packing(name) {
	popup=window.open('images/'+name+'.jpg','preview','height=500,width=670');
	if (window.focus) {
		popup.focus()
	}
	return false;
}

/* end gallery popups */