function initMAMM(){
	//horarios
	$('#horario h4')
	.css({
		'cursor': 'pointer'		 
	})
	.hover(
		function(){$(this).css({'background':'#FFF'})},
		function(){$(this).css({'background':'none'})}
	)
	.click(function(){
		$('#horario dl').slideToggle('fast');
	});
	//enlaces externos
	$('a[href*=http]').click(function(){
		window.open(this.href, '_blank');
		return false;
	});
	//adicionar email en el pie
	$('#datos').append(' ||| <a href="mailto:info@elmamm.org">info@elmamm.org</a>');
	//escribir direcciones de correo
	$('.correo').each(function(i){
		var texto = $(this).text();
		texto = texto.replace('[arroba]', '@');
		texto = texto.replace('[punto]', '.');
		$(this).html('<a href="mailto:'+ texto +'">'+ texto +'</a>');
	});
	//poner img mes
	$('#nav').before('<img src="img/mes_marzo.gif" style="position:absolute; left:10px; top:95px">')
	//
	$('#nav h1 a').bind('mouseover mouseout', function(){
		$('#nav_inicio').toggleClass('navhover');
	})
}

//ampliar info
function vermas(){
	$('a.vermas').fancybox({
		'padding': 10,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 200,
		'frameWidth': 400,
		'frameHeight': 500,
		'overlayShow': true,
		'overlayOpacity': .4,
		'overlayColor': '#00BCF9',
		'hideOnOverlayClick': true,
		'hideOnContentClick': false,
		'centerOnScroll': false
	});
}

$(document).ready(function(){
	initMAMM();
	if($('a.vermas').length > 0) vermas();
});