$(document).ready(function() {
$('a[rel=shareit], #shareit-box').mouseenter(function() {		
var height = $(this).height();
		var top = $(this).offset().top;
		var left = $(this).offset().left + ($(this).width() /2) - ($('#shareit-box').width() / 2);		
		var value = $(this).attr('href').split('|');
		var field = value[0];
		$('#shareit-header').height(height);
		$('#shareit-box').show();
		$('#shareit-box').css({'top':top, 'left':left});
		$('#shareit-field').val(field);
		$('a.shareit-sm').attr('target','_blank');
	});
	$('#shareit-box').mouseleave(function () {
		$('#shareit-field').val('');
		$(this).hide();
	});
	$('#shareit-field').click(function () {
		$(this).select();
	});
});