// Script for coloured bullet rollovers

// must define defaultBullet, activeBullet as images;
// activeSection as string section name
// activeSubsection as string third tier name

function over(section) {
	if (document.images && section != activeSection) document.images[section].src = activeBullet.src;
}

function out(section) {
	if (document.images && section != activeSection) document.images[section].src = defaultBullet.src;
}

function init() {
	if (document.images && activeSection != "") document.images[activeSection].src = activeBullet.src;
	if (document.images && activeSubsection != "") document.images[activeSubsection].src = activeSubBullet.src;
}
