jQuery(document).ready(function($){
						   
	 //Get the URL...
	var lok = $(location).attr('href');
	
	 //Check page section
	 if (lok.indexOf("Noticias") >= 0){
	 $('#main .BlogTopics a:contains("Blog")').parents("tr").hide();
	 $('#main .BlogFooter').hide();
	 $('#dnn_ctr705_ContentPane').hide();
	 $('#dnn_ctr706_ContentPane').hide();
	 
	 $('.BlogHead h2 a').each(function() {

		var texto = $(this).text().substring(1);
		$(this).text(texto);
		//$(this).text($(this).text().substring(1)); 					 
	 })
	   		
	 }else{
		 
	 	$('#main .BlogTopics a:contains("Noticias")').parents("tr").hide();
	 }


	$('.BlogTopics').hide();
	$('.footerNews .Blog_RecentEntries').hide().find('a:contains("1")').parents("div.Blog_RecentEntries").show();
	$('.footerNews .Blog_RecentEntries_Title').each(function() {							
    	$(this).text($(this).text().substr(1, 40)).append(" - Leer m&aacute;s..."); 
  	});

 });

