function initShare(){
	
	var URL_location = window.location.href;
	var get_Title = document.getElementsByTagName("title")[0].innerHTML;
	
	var div_twitter = document.getElementById('share_twitter');
	div_twitter.innerHTML = '<iframe scrolling="no" frameborder="0" tabindex="0" allowtransparency="true" src="http://platform0.twitter.com/widgets/tweet_button.html?count=horizontal&amp;lang=en&amp;text='+get_Title+'&amp;url='+URL_location+'&amp;via=gustavoawr" style="width:115px; height:21px;" title="Twitter For Websites: Tweet Button"></iframe>';

	var div_facebook = document.getElementById('share_facebook');
	div_facebook.innerHTML = '<iframe src="http://www.facebook.com/plugins/like.php?href='+URL_location+'&amp;layout=button_count&amp;show_faces=true&amp;width=87&amp;action=like&amp;colorscheme=light&amp;height=24" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:87px; height:21px;" allowTransparency="true"></iframe>';

	$('.facebook_comp').attr('href','http://www.facebook.com/sharer.php?u='+URL_location+'&t='+get_Title+'');
}

setTimeout("initShare()",1000);
