$(document).ready(function(){
	$('div.social a')
		.click(function(e){
			e.preventDefault();
			var url = $(this).attr('rel');
			url = url.replace(/%url%/, encodeURIComponent(location.href));
			url = url.replace(/%title%/, encodeURIComponent(document.title));
			window.open(url);
			//console.log(url);
			//window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title));return false;
		});
});
