var $j = jQuery.noConflict();

			$j(function(){
				//sostituzione titoli pulsanti
    			$j('#nav li.page_item a').each(function() {
      				string = $j(this).text();
	      			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
      				$j(this).html('<img src="http://www.rebis-cosmetici.it/web/wp-content/themes/rebis/style/images/' + filename + '.png" alt="' + string + '" />');
   				});
   				
   				//aggiunta uccellini ad ogni titolo news
   				$j("#wrapper #content #content_left #post h2").prepend('<img src="http://www.rebis-cosmetici.it/web/wp-content/themes/rebis/style/images/boccia.png"/>');
   				   				
				//sostituzione headings nelle pagine
				$j('#wrapper #content h1').each(function() {
      				string = $j(this).text();
	      			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
      				$j(this).html('<img class="aligncenter" src="http://www.rebis-cosmetici.it/web/wp-content/themes/rebis/style/images/headers/' + filename + '.png" alt="' + string + '" />');
   				});
   				
   				//sostituzione lista categorie
   				$j('#wrapper #content #content_nosidebar #sfondo_categorie li.categoria h2 a').each(function() {
      				string = $j(this).text();
	      			filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
      				$j(this).html('<img alt="'+ string +'" src="http://www.rebis-cosmetici.it/web/wp-content/themes/rebis/style/images/headers/' + filename + '.png" alt="' + string + '" />');
   				});
   				  

			});
