	$(document).ready(function() {					
		
		$(".facebook").click(function(e) {
			var u = $(this).attr("href");
			var t = $(this).attr("title");
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
			return false;		
		});
		
		$(".twitter").click(function(e) {
			var u = $(this).attr("href");
			var t = $(this).attr("title");
			window.open('http://twitter.com/home?status='+encodeURIComponent(u),'share','toolbar=0,status=0,width=626,height=436');
			return false;		
		});		
					
	});
