// JavaScript Document
$(document).ready(function(){
	$('#share_face').click(addFacebook);
	$('#share_twitter').click(addTwitter);
})

function addFacebook(){
	var urlComplete =  window.location;
	var title = $('#titulo_txt').text();
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(urlComplete), 'facebook','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes');
}
function addTwitter(){
	var urlComplete =  window.location;
	var title = $('#titulo_txt').text();
window.open('http://twitter.com/?status='+encodeURIComponent(urlComplete), 'twitter','toolbar=no,width=700,height=400,scrollbar=yes,resizable=yes')}
