document.observe("dom:loaded", function() {
	$$('#icons img').each(function (img){
		img.observe('click',function(){
			var a = $($$('img.active')[0]);
			a.className = a.className.replace(/ active/g,"");
			$('code').value = '<a href="http://www.visitoring.de/stats/'+counter+'" title="kostenloser Counter">\n  <img src="http://www.visitoring.de/'+counter+'/'+this.className+'" alt="visitoring.de" />\n</a>';			
			this.className += " active"; 
		});
	});	
	if($('code')) { 
		$('code').observe('click', function(){
			this.select();
			this.focus();
		});
		$('statLink').observe('click', function(){
			this.select();
			this.focus();
		});		
		$('code').value = '<a href="http://www.visitoring.de/stats/'+counter+'" title="kostenloser Counter">\n  <img src="http://www.visitoring.de/'+counter+'/grau" alt="visitoring.de" />\n</a>';						
	}
	
	$$('strong.visitoring').each(function(strong){
		strong.innerHTML = '<i>VISIT<span style="color: #f00;">ORING</span></i>';
	});	
	
	
});

