window.addEvent('load',function(){

var ay = 0;
$('sub_menu').setStyle('height','0px')
$('l_m').addEvent('click',function(ev)
{
	new Event(ev).stop();	
	if (ay == 0)
		{
			ay = 180;
		}
	else
		{
			ay =0;
		}
		
	$('sub_menu').tween('height', ay);
});

var actual = 0;								
$$('#paginador a').each(function(el,contador)
{
	el.addEvent('click',function(ev)
	{
		new Event(ev).stop();
		ay = contador * 311 * -1;
		ele = $$('#paginador a')[actual];
		ele.morph('.noseleccionado');
		this.morph('.seleccionado');
		actual = contador;
		ir(ay);
		
	});
								 
});

function ir(numero)
{
		$('contiene_imgs').tween('margin-top', numero);
}
});