// JavaScript Document

window.addEvent('domready', function() {
    $$('select.paginacao').each(function(item, index){
				item.addEvent('change', mudarPagina);
		});
});

function mudarPagina(){
	var str = window.location.href;
	
	str = str.replace(/(\?|&)numPagina=[0-9]*/, '');
	var ult = str.charAt(str.length-1);
	if(ult != '?' && ult != '&')
		str += '&';
	str += 'numPagina=' + this.value;
	
	window.location = str;
}

function iconeOver(){
	this.setStyle('background-image', 'url(templates/imagens/over_icones.png)');
//	this.setProperty('src', this.getProperty('src').replace(/up/, 'over'));
}
function iconeOut(){
	this.setStyle('background-image', 'none');
//	this.setProperty('src', this.getProperty('src').replace(/over/, 'up'));
}

