// INICIO
function opacidad(im){
	new Fx.Style(im, 'opacity', {duration:500}).custom(0,1);
}

function init(){
	//botones
	var aes = $$('#portada_planes a');
	aes.each(function(a, i){
		a.setProperty('rel', 'gb_page_center[640, 500]');
		a.addEvent('mouseover', function(){
			opacidad(a.getElement('img'));
		});
	});
}

window.addEvent('domready', init);