jQuery(document).ready(function(){
	var $j = jQuery.noConflict();
	if ($j('#blog-share').length > 0) {
		var the_blog_title = $j('#blog_single_right .post h1').text();
		//console.log('the_blog_title: '+the_blog_title);
		var the_twitter_title = $j('.twitter-share-button').attr('data-text',the_blog_title);
		document.title = the_blog_title+' « Nota Bene';
		//console.log('the_twitter_title: '+the_twitter_title);
		var the_mail_title = $j('.mr_social_sharing_top.email a').attr('href').replace(/(.*)subject=(.*)&body=(.*)/g, '$1subject='+the_blog_title+'&body=$3');
		//console.log('the_mail_title: '+the_mail_title;
		$j('.mr_social_sharing_top.email a').attr('href',the_mail_title);
		//$j('meta[property=og\\:title]').attr('content', the_blog_title);
	}
});




