function social(u,t) {

	var f = 'images/social/'; 
	document.write('<div id="social"></div>');
	var s = $('#social');

	s.append(
		'<a rel="nofollow" href="http://twitter.com/home?status=' + t + ' - ' + u + '" title="Добавить в Twitter"><img src="' + f + 'twitter.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.google.com/buzz/post?message=' + t + '&url=' + u + '" title="Добавить в Google Buzz"><img src="' + f + 'google-buzz.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.facebook.com/sharer.php?u=' + u + '" title="Поделиться в Facebook"><img src="' + f + 'facebook.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://vkontakte.ru/share.php?url=' + u + '" title="Поделиться ВКонтакте"><img src="' + f + 'vkontakte.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://connect.mail.ru/share?share_url=' + u + '" title="Поделиться в Моем Мире"><img src="' + f + 'moy-mir.png" alt="" /></a>' +
		'<a rel="nofollow" href="http://www.livejournal.com/update.bml?event=' + u + '&subject=' + t + '" title="Опубликовать в своем блоге livejournal.com"><img src="' + f + 'livejournal.png" alt="" /></a>' +
	'');

	s.find('a').attr({target: '_blank'}).css({opacity: 0.5}).hover(
		function() { $(this).css({opacity: 1}); },
		function() { $(this).css({opacity: 0.7}); }
	);
	s.hover(
		function() { $(this).find('a').css({opacity: 0.7}); },
		function() { $(this).find('a').css({opacity: 0.5}); }
	);

}
