$(document).ready(function() {
var texto = '<img src="/wp-content/recursos/contacto_25.png" style="padding-top: 5px;" />'
var texto_over = '<img src="/wp-content/recursos/contacto_25_over.png" style="padding-top: 5px;" />'
	jQuery("#pageHeaderNav > div > ul > li > a[title='Contacto CEMED']").html('');
	jQuery("#pageHeaderNav > div > ul > li > a[title='Contacto CEMED']").html(texto);
	jQuery("#pageHeaderNav > div > ul > li > a[title='Contacto CEMED']").hover(
		function(){
			jQuery(this).html(texto_over);
		},
		function() {
			jQuery(this).html(texto);
		}
	);
	

var texto_home = '<img src="/wp-content/recursos/home_25.png" style="padding-top: 5px;" />'
var texto_home_over = '<img src="/wp-content/recursos/home_25_over.png" style="padding-top: 5px;" />'
        jQuery("#pageHeaderNav > div > ul > li > a[title='PaginaPrincipal']").html('');
        jQuery("#pageHeaderNav > div > ul > li > a[title='PaginaPrincipal']").html(texto_home);
        jQuery("#pageHeaderNav > div > ul > li > a[title='PaginaPrincipal']").hover(
                function(){
                        jQuery(this).html(texto_home_over);
                },
                function() {
                        jQuery(this).html(texto_home);
                }
        );

});

