function openmenu(id) {
theitem = document.getElementById(id).style;
if ((lastitem != false) && (lastitem != id)) {
document.getElementById(lastitem).style.display = 'none';
}
if (theitem.display == 'none') {
theitem.display = '';
} else {
theitem.display = 'none';
}
lastitem = id;
}
function swapimage(id,ovr) {
if (ovr == 1) {
document.images["img_"+id].src = imgs[id].over.src;
} else {
document.images["img_"+id].src = imgs[id].up.src;
}
}
function img (src) {
this.up = new Image();
this.up.src = path+src+".gif";
this.over = new Image();
this.over.src = path+src+"_over.gif";
}
var lastitem = false;
var path = "/franchise_opportunity/images/menu/";
var imgs = new Array();
imgs[1] = new img('own_business');
imgs[2] = new img('why_di');
imgs[3] = new img('are_you_qualified');
imgs[4] = new img('facts');
imgs[5] = new img('faq');
imgs[6] = new img('request_brochure');
