$(document).ready(function(){
	//LINK VARS
	var pageInfo = 'url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title);
	var delicious = 'http://del.icio.us/post?v=4&noui&jump=close&'+pageInfo;
	var digg = 'http://digg.com/submit?phase=2&'+pageInfo;
	var reddit = 'http://reddit.com/submit?'+pageInfo;
	var stumbleUpon = 'http://www.stumbleupon.com/submit?'+pageInfo;
	//HTML
	var html = '<div style="border-bottom: 1px solid #000000; margin: 5px; padding-left: 5px; font-size: x-small">';
	html += '<table border="0" cellspacing="0" cellpadding="0"><tbody><tr>';
	html += '<td vAlign="bottom">Share This Article:</td>';
	html += '<td vAlign="bottom"><a href="'+delicious+'" title="del.icio.us" rel="social"><img src="http://images.del.icio.us/static/img/delicious.small.gif" border="0" width="10" height="10" alt="del.icio.us"> del.icio.us</a></td>';
	html += '<td>|</td>';
	html += '<td vAlign="bottom"><a href="'+digg+'" title="Digg" rel="social"><img src="http://digg.com/img/digg-guy-icon.gif" border="0" width="16" height="16" alt="Digg"> Digg</a></td>';
	html += '<td>|</td>';
	html += '<td vAlign="bottom"><a href="'+reddit+'" title="Reddit" rel="social"><img src="http://static.reddit.com/blog_head.png" border="0" width="16" height="16" alt="Reddit"> Reddit</a></td>';
	html += '<td>|</td>';
	html += '<td vAlign="bottom"><a href="'+stumbleUpon+'" title="StumbleUpon" rel="social"><img src="http://www.stumbleupon.com/images/stumbleit.gif" border="0" width="16" height="16" alt="StumbleUpon"> StumbleUpon</a></td>';
	html += '</tr></tbody></table>';
	html += '</div>';
	//LOAD HTML
	$('.social').html(html);
	//ON CLICK ACTION
	$('.social a').click(function(){
		window.open($(this).attr('href'), 'new_window');
		return false;
	});
});