var LayerIndexActivateEvent = function(){
	$('#panel_video_presentacion').css('left',application.dimension.calculateCenterHorizontal($('#layer_index'),$('#panel_video_presentacion'))+'px');
	
	$('#pane_lenguajes').width(Math.round(this.tag.width() * 0.5));
	$('#pane_lenguajes').css('left',application.dimension.calculateCenterHorizontal(this.tag,$('#pane_lenguajes'))+'px');
	
	$('#chooseSpanish').click(function(){
		$f('player_video_presentacion').stop();
		$f('player_video_presentacion').close();
		application.show('layer_home',{i18n:'es'});
	});
	$('#chooseEnglish').click(function(){
		$f('player_video_presentacion').stop();
		$f('player_video_presentacion').close();
		application.show('layer_home',{i18n:'en'});
	});
	
	
	$('.TextChooseLanguage').hover(
							function(){this.className ='Event TextChooseLanguage TextoOver';},
							function(){this.className ='Event TextChooseLanguage TextoOut';}
							);
};
