$(function() {
	var imgsrc = 'http://counter.yadro.ru/hit?t57.6;r' + escape(document.referrer) + 
			  ((typeof(screen)=='undefined') ? '' : ';s' + screen.width + '*' + screen.height + '*' + 
			   (screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + 
			  ';u' + escape(document.URL) +	';' + Math.random(); 
	
	$('#liveinternet').append(
			$('<a>').attr({
				href : 'http://www.liveinternet.ru/click', 
				target : '_blank'
			}).append(
					$('<img>').attr({
						src : imgsrc,
						alt : '',
						title : 'LiveInternet',
						border : 0,
						width : 88,
						height : 31
					})
			)
	);
});

/*
document.getElementById("liveinternet").innerHTML =
		'<a href="http://www.liveinternet.ru/click" target="_blank">' +
		'<img src="http://counter.yadro.ru/hit?t57.6;r' + 
		escape(document.referrer) + 
		((typeof(screen)=='undefined') ? '' : ';s' + 
		screen.width + '*' + 
		screen.height + '*' + 
		(screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + 
		';u' + escape(document.URL) + 
		';' + Math.random() + 
		'" alt="" title="LiveInternet" ' + 
		'border="0" width="88" height="31"/>' +
		'</a>';

*/
