$(function() {
	
	$('.noticia img').each(function(index) {
	  if (this.width > 275) {
			this.height = this.height * 275 / this.width;
			this.width = 275;
		}
	});
	
	$('#archivo li:gt(4)').hide();
	$('#archivo-mas').show();
	$('#archivo-mas').click(function() {
			$('#archivo li').show('slow');
			$(this).hide();
	});
	
	$(".postmeta .right a:contains('Blog')").hide();
	
	$('.gallery a').lightBox();
	
});
