$(document).ready(function(){
	$('a.share').click(function(){
			var entryid = $(this).attr('rel');
			$(this).parent().append(
			'<div class="clearfix shareBox">'+
			'<ul>'+
			'	<li><a href="http://twitter.com/home?status=http://www.baddaymagazine.com/index.php/v4/entry/'+entryid+'">Twitter</a></li>'+
			'	<li><a href="http://www.facebook.com/share.php?u=http://www.baddaymagazine.com/index.php/v4/entry/'+entryid+'" target="_blank">Facebook</a></li>'+
			'	<li><a class="closeShare" href="#">&times;</a></li>'+	
			'</ul>'+
			'</div>'
			);
			$(this).hide();
			$(this).parent().find('a.closeShare').click(function(){
				var parentElement = $(this).parent().parent().parent().parent();
				$(parentElement).find('a.share').show();
				$(parentElement).find('div.shareBox').remove();
				return false;
			});
			return false;
		});
});
