$(document).ready(function(){

	var fecha = new Date();
	var msjCreador = "Creado por <a href='http://jeffsantillan.blogspot.com' target='_blank' >Jeff Santillan Paredes</a> ";
	var msjDerechos = "Copyright © " + fecha.getFullYear() + " - <b>Centro Cerrito Azul</b>";

	$('#footer').css({ height:'30px', padding:'0px', paddingTop:'1em' });
	$('#footer-width').css({ height:'100%', margin:'0px', padding:'0px' });

	$('#footer-width div.alignleft:eq(1)').html(msjCreador);
	$('#footer-width div.alignright').html(msjDerechos);

	$('#footer-width div.alignleft:eq(0)').remove();

	$('#FJ_MP_Cont').addClass('mapaCentrado');


	// Listar la Informacion del Centro

	var icons = new Array();
	icons = ['documentos.png','mapa.png','telefono.png','mail.png'];
		
	$('#info li').each(function(index){		
		$(this).addClass('listInfo');
		$(this).css('list-style-image', 'url(http://centrocerritoazul.com/wp-content/themes/neon/images/' + icons[index] + ')' );		
	});	
	
	
	// Listado de Categorias
	
	$('#sidebar .sidebar-widg').each(function(index){
		var texto = $(this).find('h2').text();
				
		if(texto.toLowerCase() == "menu"){
			$(this).find('h2').remove();
			$(this).attr('id','listCategoria');
			$(this).addClass('listadoCategoria');
			$(this).find('li').removeAttr('class');
			$(this).find('li').attr('class','listCategoriaOff');
		}
	})

	$('#listCategoria li').hover( function(){
		$(this).addClass('listCategoriaOn');
	}, function(){
		$(this).removeClass('listCategoriaOn');
	});

})

function mostrar(msj){
	$('body').append('<h3>' + msj + '</h3>');
}
