function dropdown(obj) {
	idx=fDOM(obj);
	idx.style.display=(Hold) ? "none" : "block";
	Hold=1-Hold;
}
function fDOM(obj) {
	if (document.getElementById) return (document.getElementById(obj));
	else return (0);
}
Hold=0;


// Disable Image Right Click
var message="All Content Copyright © 2007 La Bonne Vivante";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->