/* MOVER SCROLL ABAJO */
function scrollBajo() 
{
	var targetOffset = $('#tipo1b').offset().top;
	$('html,body').animate({scrollTop: targetOffset}, 1000);
}
function scrollBanner() 
{
	var targetOffset = $('#tipo1').offset().top;
	$('html,body').animate({scrollTop: targetOffset}, 1000);
}
scrollBanner() 
/* PASAR VARIABLES A FLASH */
function fTextoJSaFlash(texto){
	objFlash = document.peliculaFlash || document.getElementById( 'banner1b' );
	objFlash.fEnviarTexto(texto);
}
/* expandir */
function expandirBajo() 
{
	$('#tipo1b').css( {height:500} );
} 
/* cerrar */
function cerrarBajo() 
{
	$('#tipo1b').animate( {height:0}, 1000 ); 
} 
