window.onload = function () {
	$(document).ready(function () {
		$('#menu > a img').hover( function() { this.src = this.src.replace("-off", "-on"); }, function() { this.src = this.src.replace("-on", "-off"); });
	});
}

