function navHover(div, dir) {
	if(dir == 1) {
		div.style.backgroundPosition = "0 -36px";
	} else {
		div.style.backgroundPosition = "0 0";
	}
}