/*!	Standard js function library - general functions */
	$(document).ready(function() {
		$("#menu-link img").hover(
		function() {
			this.src = this.src.replace("-btnoff","-btnon");
		},
		function() {
			this.src = this.src.replace("-btnon","-btnoff");
		}
		);
	});

	
