
<!--

var subnavdir = "./images/nav/";

function preload_subnav_indiv_images () {
	if (document.images) {
		focus_active = new Image;
		focus_hover = new Image;
		change_active = new Image;
		change_hover = new Image;
		soothe_active = new Image;
		soothe_hover = new Image;

		focus_active.src = subnavdir + "focus_active.gif";
		focus_hover.src = subnavdir + "focus_hover.gif";

		change_active.src = subnavdir + "change_active.gif";
		change_hover.src = subnavdir + "change_hover.gif"; 

		soothe_active.src = subnavdir + "soothe_active.gif";
		soothe_hover.src = subnavdir + "soothe_hover.gif"; }
}

preload_subnav_indiv_images();

// -->