/* author: Andy Kale, kale@buzzmedia.ca */
/* Creation date: 10/10/2004 */
function buzzRO(img,state) {
 if (state == 'on') { document.images[img].src = eval(img + "_on.src"); }
 else { document.images[img].src = eval(img + ".src"); }
}

function preload(imgObj) {
	if (document.images) {
		eval(imgObj+' = new Image()');
		imgSrc = ('img/' + imgObj + '.gif');			
		eval(imgObj+'.src = "'+imgSrc+'"');
		eval(imgObj+'_on = new Image()');
		imgSrc = ('img/' + imgObj + '_on.gif');			
		eval(imgObj+'_on.src = "'+imgSrc+'"');		
	}
}

preload('nav_home');
preload('nav_conditions');
preload('nav_about_the_staff');
preload('nav_about_office');
preload('nav_about_chiro');
preload('nav_about_acupuncture');
preload('nav_services');
preload('nav_first_visit');
preload('nav_faq');


function popPage(page) {
 windowprops = "height=540,width=800,location=yes,scrollbars=yes,menubars=yes,toolbars=yes,resizable=yes";
 window.open(page, "Popup", windowprops);
}