

$(document).ready(function(){

	$('title').text("Radio Edgetoads");

	$('h1,h2,h3,p,a').each(function(){
		if(this.textContent && this.textContent!="Mostrar estadísticas de emisión"){
			this.textContent=this.textContent.replace(/Battletoads/g,'Edgetoads');
			this.textContent=this.textContent.replace(/Game Over/g,'Edge Over');
			this.textContent=this.textContent.replace(/battletoads/g,'edgetoads');
			this.textContent=this.textContent.replace(/gameover/g,'edgeover');
			this.textContent=this.textContent.replace(/Game Blogger/g,'Edge Blogger');
			this.textContent=this.textContent.replace(/Octavo Pasajero/g,'Octavo Pasedgero');
			this.textContent=this.textContent.replace(/Twitter/g,'Twedge');
			this.textContent=this.textContent.replace(/Facebook/g,'Fedgebook');
		}
	});

	$('img').each(function(){
		if(this.src=="http://www.radiobattletoads.com/wp-content/themes/PurpleFever/i/radiologo.png"){
			this.src="http://www.radiobattletoads.com/wp-content/themes/PurpleFever/i/edgelogo.png";
		}
	});
});

