function socializ(u,t) {

	var f = '/main/social_icon/'; /* путь к папке с изображениями кнопок */

	document.write('<div id="socializ"></div>');

	(function($) {
	$(function() {

		var s = $('#socializ');

		s.append(
			'<a href="http://vkontakte.ru/' + '" title="ВКонтакте"><img src="' + f + 'vkontakte.png" alt="" /></a>' +
			'<a href="http://odnoklassniki.ru/' + '" title="Одноклассники"><img src="' + f + 'odnoklassniki.png" alt="" /></a>' +
			'<a href="http://mail.ru/' + '" title="@Mail.ru"><img src="' + f + 'moy-mir.png" alt="" /></a>' +
			'<a href="http://www.gmail.com/' + '" title="Электронная почта от Google"><img src="' + f + 'gmail.png" alt="" /></a>' +
			'<a href="http://www.livejournal.ru/' + '" title="Живой Журнал"><img src="' + f + 'livejournal.png" alt="" /></a>' +
			'<a href="http://twitter.com/' + '" title="Твиттер"><img src="' + f + 'twitter.png" alt="" /></a>' +
			'<a href="http://www.skype.com/' + '" title="Skype"><img src="' + f + 'skype.png" alt="" /></a>' +
			'<a href="http://www.facebook.com/' + u + '" title="Фейсбук"><img src="' + f + 'facebook.png" alt="" /></a>' +
			'<a href="http://www.google.ru/' + '" title="Google"><img src="' + f + 'google.png" alt="" /></a>' +
			'<a href="http://www.yandex.ru/' + '" title="Яндекс"><img src="' + f + 'yandex.png" alt="" /></a>' +
			'<a href="http://memori.ru/' + '" title="Сохранить закладку в Memori.ru"><img src="' + f + 'memori.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}); }
		);

	})
	})(jQuery)

}
