function socializ(u,t) {

	var f = '/socimg/'; /* путь к папке с изображениями кнопок */

	document.write('<div id="socializ"></div>');
	var s = $('#socializ');

	s.append(
		'<a href="http://twitter.com/home?status= ' + t + ' - ' + u + '" title="Добавить в Twitter"><img src="/socimg/twitter1.png" alt="" /></a>' +
		'<a href="http://www.facebook.com/sharer.php?u=' + u + '" title="Поделиться в Facebook"><img src="/socimg/facebook1.png" alt="" /></a>' +
		'<a href="http://vkontakte.ru/share.php?url=' + u + '" title="Поделиться ВКонтакте"><img src="/socimg/vkontakte1.png" alt="" /></a>' +
		'<a href="http://connect.mail.ru/share?share_url=' + u + '" title="Поделиться в Моем Мире"><img src="/socimg/moy-mir1.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}); }
	);

}
