function bookmarks(u,t,g) {

	document.write('<div id="bookmarks"></div>');
	var s = jQuery('#bookmarks');

	s.append(
		'<div id="social">' +
		'<a href="http://twitter.com/home?status=' + t + ' - ' + u + '" title="' + hint[0] + '"><img src="' + img + 'twitter.png" alt="" /></a>' +
		'<a href="http://www.google.com/reader/link?url=' + u + '&amp;title=' + t + '&amp;srcURL=' + g + '" title="' + hint[1] + '"><img src="' + img + 'google-buzz.png" alt="" /></a>' +
		'<a href="http://www.friendfeed.com/share?title=' + t + ' - ' + u + '" title="' + hint[2] + '"><img src="' + img + 'friendfeed.png" alt="" /></a>' +
		'<a href="http://www.facebook.com/sharer.php?u=' + u + '" title="' + hint[3] + '"><img src="' + img + 'facebook.png" alt="" /></a>' +
		'<a href="http://vkontakte.ru/share.php?url=' + u + '" title="' + hint[4] + '"><img src="' + img + 'vkontakte.png" alt="" /></a>' +
		'<a href="http://connect.mail.ru/share?share_url=' + u + '" title="' + hint[5] + '"><img src="' + img + 'moy-mir.png" alt="" /></a>' +
		'<a href="http://www.livejournal.com/update.bml?event=' + u + '&amp;subject=' + t + '" title="' + hint[6] + '"><img src="' + img + 'livejournal.png" alt="" /></a>' +
		'<a href="http://delicious.com/save?url=' + u + '&amp;title=' + t + '" title="' + hint[7] + '"><img src="' + img + 'delicious.png" alt="" /></a>' +
		'<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=' + u + '&amp;title=' + t + '" title="' + hint[8] + '"><img src="' + img + 'google.png" alt="" /></a>' +
		'<a href="http://bobrdobr.ru/add.html?url=' + u + '&amp;title=' + t + '" title="' + hint[9] + '"><img src="' + img + 'bobrdobr.png" alt="" /></a>' +
		'<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=' + u + '&amp;u_data[name]=' + t + '" title="' + hint[10] + '"><img src="' + img + 'memori.png" alt="" /></a>' +
		'<a href="http://www.mister-wong.ru/index.php?action=addurl&amp;bm_url=' + u + '&amp;bm_description=' + t + '" title="' + hint[11] + '"><img src="' + img + 'mister-wong.png" alt="" /></a>' +
		'</div>' +
	'');

	s.find('a').attr({target: '_blank'}).css({opacity: 0.5}).hover(
		function() { jQuery(this).css({opacity: 1}); },
		function() { jQuery(this).css({opacity: 0.7}); }
	);
	s.hover(
		function() { jQuery(this).find('a').css({opacity: 0.7}); },
		function() { jQuery(this).find('a').css({opacity: 0.5}); }
	);

}
