$(document).ready(function() {

	//grab all the anchor tag with rel set to shareit
	//$('a[rel=shareit], #shareit-box').mouseenter(function() {		
        $('a[rel=shareit], #shareit-box').mouseover(function() {
		
                  var url = location.href;
                  var title=encodeURIComponent(document.title);
                  //console.log(url);
		
		  var field = url;
                  url=encodeURIComponent(url);
		  //make the bookmark media open in new tab/window
		  $('a.shareit-sm').attr('target','_blank');
		
		  //Setup the bookmark media url and title
  $('a[rel=shareit-twitter]').attr('href', 'http://twitter.com/home?status=' + title + '%20-%20' + url);	
   $('a[rel=shareit-facebook]').attr('href', 'http://www.facebook.com/share.php?u=' + url + '&amp;t=' + title);	
$('a[rel=shareit-linkedin]').attr('href', 'http://www.linkedin.com/shareArticle?mini=true&url=' + url);	
   
 
 
	});

});



