$(document).ready(function() {
	$("#menu-"+pagina).each(function() {
		this.src = this.src.replace(/\.gif/, '_on.gif');
	    });
		    
	$("#menu img").mouseover(function() { 
		if (!this.id.match(new RegExp(pagina))) 
		    this.src = this.src.replace(/\.gif/, '_on.gif');
	    });

	$("#menu img").mouseout(function() { 
		if (!this.id.match(new RegExp(pagina))) 
		    this.src = this.src.replace(/_on/, '');
	    });
    });