// JavaScript Document
window.addEvent('domready', function() {
									 
	// inicializa los listados a mostrar
	$$('div.categorias_contenidos').each(function(myElement){
		myElement.set('tween', {duration:500});				   
		myElement.tween('height',0);
						  							   
	});	
	
	the_logo = 'logo';
	
	$('lk_buri').addEvent('mouseover', function(e) {
		$(the_logo).tween('background-color', '#696');
		e.stop();
	});
	
	$('lk_discos').addEvent('mouseover', function(e) {
		$(the_logo).tween('background-color', '#f90');
		e.stop();
	});
	
	$('lk_info').addEvent('mouseover', function(e) {
		$(the_logo).tween('background-color', '#39c');
		e.stop();
	});
	

});
