$(document).ready(function() {
	//post footer
	$('.TwitterShare').live('click', function() {
		var url = $(this).attr('href');
		window.open(url, "tweetThis", "width=550,height=450,toolbar=no,scrollbars=no");
		return false;
	});
	$('.FacebookShare').live('click', function() {
		var url = $(this).attr('href');
		window.open(url, "shareThis", "width=600,height=400,toolbar=no,scrollbars=no");
		return false;
	});
	
});

