jQuery(function($){

	$('#menu img').bind('mouseenter', function(){
		if (this.src.indexOf('-on') > 0) return false;
		this.src = this.src.replace(/(.*)\.(jpg|gif|png)$/i, "$1-over.$2");
	});
	$('#menu img').bind('mouseleave', function(){
		if (this.src.indexOf('-on') > 0) return false;
		this.src = this.src.replace(/(.*)-over\.(jpg|gif|png)$/i, "$1.$2");
	});

	$('#masterFooter img').bind('mouseenter', function(){
		this.src = this.src.replace(/(.*)\.(jpg|gif|png)$/i, "$1-over.$2");
	});
	$('#masterFooter img').bind('mouseleave', function(){
		this.src = this.src.replace(/(.*)-over\.(jpg|gif|png)$/i, "$1.$2");
	});

});
