$(document).ready(function(){
	if ($("#unit-social-bookmarks").length > 0)
	{
		
		$.fn.qtip.styles.social_bookmark = {
			tip: 'leftMiddle',
			border: { width: 0, radius: 0, color: '#000' },
			width: { max: 320 },
			background: '#000',
			color: '#FFF'
		};
		$("#unit-social-bookmarks li a").css('cursor','pointer').each(function(){
			$text = $(this).text();
			$(this).qtip( {
				content: $text,
				position: {
					corner: {
						tooltip: 'bottomMiddle',
						target: 'topMiddle'
					}
				},
				border: {
					width: 0,
					radius: 0
				},
				hide: {
					fixed: true
				},
				adjust: {
					screen: true
				},
				style: {
					tip: true,
					name: 'social_bookmark'
				}
			});
		});
	}
});
