jQuery(document).ready(function() {
	if (numberNews > numberNewsShortDisplay) {
		jQuery(".itemOculto").hide();
		jQuery("#calendarioSuper").append("<a href=\"\" id=\"botonVerMas\" class=\"ar\">"+verNoticias+"</a>");
	}
	jQuery("#botonVerMas").toggle(
		function(){
			jQuery(".itemOculto").show();
			jQuery("#botonVerMas").text(ocultarNoticias);
		},
		function(){
			jQuery(".itemOculto").hide();
			jQuery("#botonVerMas").text(verNoticias);
		}
	);
});
