	$(function() {
		$('.b6_social_share_link').css('display','inline');
		$('.b6_social_email_link').css('display','inline');
		$('.b6_social_share_link').click(function() {
			slink = $(this);
			post_id = slink.attr('href').replace('#article-','');
			
			if (!$('#b6-social-sites-' + post_id).is('div')) {
				$('.b6_social').css('display','none');
				$('<div class="b6_social" id="b6-social-sites-' + post_id + '"><h2 class="b6_social_title"><span>Share This Article</span><a href="#">Close</a></h2></div>').appendTo('body');
				$('#b6-social-sites-' + post_id).css({ display: 'block', left: slink.offset().left - 150 + slink.width() + 'px', top: slink.offset().top + slink.height() + 5 + 'px' });
				$.get('http://www.the9513.com/wp-content/plugins/b6_social/b6_social.php', { 'b6_social_action': 'sites', 'post_id': post_id }, function(data) {
					$('#b6-social-sites-' + post_id).html(data).css({ height: 'auto', backgroundImage: 'none' });
					$('.b6_social_title a').click(function() {
						$(this).parent('h2').parent('.b6_social').css('display','none');
						return false;
					});
				});
			} else {
				if ($('#b6-social-sites-' + post_id).css('display') != 'block') {
					$('.b6_social').css('display','none');
				}

				$('#b6-social-sites-' + post_id).toggle();
			}
			
			return false;
		});
		
		$('.b6_social_email_link').click(function() {
			slink = $(this);
			post_id = slink.attr('href').replace('#article-','');
			
			if (!$('#social-' + post_id).is('div')) {
				$('.b6_social').css('display','none');
				$('<div class="b6_social" id="social-' + post_id + '"><h2 class="b6_social_title"><span>Share This Article</span><a href="#">Close</a></h2></div>').appendTo('body');
				$('#social-' + post_id).css({ display: 'block', left: slink.offset().left - 150 + slink.width() + 'px', top: slink.offset().top + slink.height() + 5 + 'px' });
				$.get('http://www.the9513.com/wp-content/plugins/b6_social/b6_social.php', { 'b6_social_action': 'email', 'post_id': post_id }, function(data) {
					$('#social-' + post_id).html(data).css({ height: 'auto', backgroundImage: 'none' });
					$('.b6_social_title a').click(function() {
						$(this).parent('h2').parent('.b6_social').css('display','none');
						return false;
					});
					b6_social_button(post_id);
				});
			} else {
				if ($('#social-' + post_id).css('display') != 'block') {
					$('.b6_social').css('display','none');
				}

				$('#social-' + post_id).toggle();
			}
			
			return false;
		});
	});
	
	function b6_social_button(post_id) {
		$('.b6_social_button').click(function() {
			$('#social-' + post_id + ' .b6_social_title').after('<div style="float: left; width: 278px; padding: 34px 0; margin: 10px 10px 0 10px; text-align: center"><img src="http://www.the9513.com/wp-content/themes/9513v3/images/icons/loading.gif" /></div>');
			$('#social-' + post_id + ' form').css('display','none');
			$.post('http://www.the9513.com/wp-content/plugins/b6_social/b6_social.php', { 'b6_social_name': $('#b6_social_name_' + post_id).val(), 'b6_social_to': $('#b6_social_to_' + post_id).val(), 'b6_social_from': $('#b6_social_from_' + post_id).val(), 'b6_social_message': $('#b6_social_message_' + post_id).val(), 'b6_social_post_id': $('#b6_social_post_id_' + post_id).val() }, function(data) {
				$('#social-' + post_id).html(data);
				$('.b6_social_title a').click(function() {
					$(this).parent('h2').parent('.b6_social').css('display','none');
					return false;
				});
				b6_social_button(post_id);
			});
			return false;
		});
	}
	