/* PASAR VARIABLES A FLASH */
function fTextoJSaFlash(texto){
	objFlash = document.peliculaFlash || document.getElementById( 'banner0' );
	objFlash.fEnviarTexto(texto);
}
/* expandir */
function expandir() 
{ 
	fTextoJSaFlash('expande');
	$('#tipo0').css( {width:975} );
} 
/* contraer */
function enviocontraer() 
{ 
	fTextoJSaFlash('contrae');
	/*$('#tipo0').css( {width:335} );*/
	/*EL FLASH SE ENCARGA DE CONTRAER CUANDO ACABA LA ANIMACION*/
}
function contraer() 
{ 
	$('#tipo0').css( {width:335} );
}

/*
function expandir() 
{ 
   $('#tipo0').stop().animate( {width:975}, 1000 ); 
} 
function contraer() 
{ 
   $('#tipo0').stop().animate( {width:335}, 1000 ); 
}
*/
