/*function mover(columna,botonera)
{
$('roll').set('tween', {duration: 300, transition: Fx.Transitions.Linear, wait: 'false'});
$('roll').tween('left',columna);

$('botonera_txt').set('slide', {mode:'horizontal', duration: 400, wait: 'false'});
if(botonera == '0')
$('botonera_txt').slide('in');
else
$('botonera_txt').slide('out');

}
*/

function abrir(cerrar,abrir,alto){
$(abrir).set('tween', {transition: Fx.Transitions.Elastic.easeOut,duration: 1500, wait: 'false'});
$(cerrar).set('tween', {transition: Fx.Transitions.Elastic.easeOut,duration: 800, wait: 'false'});
$(cerrar).tween("height", "0px");
$(abrir).tween("height", alto+"px");
}

function punta(puntero,normal){
$(puntero).set('tween');
$(normal).set('tween');
$(puntero).tween("cursor", "pointer");
$(normal).tween("cursor", "text");
//$('caro').removeProperty('style');
}

/*function mostrar(abre,cierra){
$(abre).fade('in');
$(cierra).fade('out');
}

*/

function mostrar(cual){
$(cual).fade('in');
}

function cerrar(cual){
$(cual).fade('out');
}

function cerrar2(cual,cual2){
$(cual).fade('out');
$(cual2).fade('out');
}



