var LayerHomeActivateEvent = function(){
	$('.PaneIconoHome').hover(
			function(){
				$(this).children('.ImagenIconoHome').animate({width : '160px' }, 400);
				$(this).children('.TextoIcono').animate({'font-size': '24px' }, 400);
			},
			function(){
				$(this).children('.ImagenIconoHome').animate({width : '100px' }, 100);
				$(this).children('.TextoIcono').animate({'font-size': '18px' }, 100);
			}
		);
	
	$('#pane_fotos').click(function(){application.show('layer_seccion_fotos');});
	
	$('#pane_videos').click(function(){application.show('layer_seccion_videos');});
	
	$('#pane_contactos').click(function(){application.show('layer_seccion_contacto');});
	
	$('#pane_historia').click(function(){application.show('layer_seccion_historia');});
	
	$('#tapa_pane').mousedown(function(){application.show('layer_seccion_cv');});
};
