$(function() {
	if ($("#first-block > .page-index > li")) {
		$("#first-block > .page-index > li").hover(
			function() {
				if (this.className != "current") {
					this.style.color = "#F00";
					bytefx.color(this, "backgroundColor", "#FFFFFF", "#002576", 12);
				}
			},
			function() {
				if (this.className != "current") {
					this.style.color = "#333";
					bytefx.color(this, "backgroundColor", "#002576", "#FFFFFF", 12);
				}
			}
		);
	}
});

