
var hide_toolbox;

/*********** Share functionality **************/
$(document).ready(function(){

	/************ onclick event on Email This Page **********/
	$(".sharebox").mouseover(function(){															 
		var cur_position = $(this).offset();
		$("#sharebox-wrppr").css({
									top: (cur_position.top) + 'px',
									left: (cur_position.left - 452) + 'px'
								 });
		$("#sharebox-wrppr").fadeIn();
		$(this).addClass("sharebox-active");
		clearTimeout(hide_toolbox);
		return false;
	 });
	
	$("#sharebox-wrppr").mouseover(function(){
		clearTimeout(hide_toolbox);
	}).mouseout(function(){
		hide_toolbox = setTimeout(function(){
			$("#sharebox-wrppr").fadeOut();
			$(".sharebox").removeClass("sharebox-active");
		}, 300);
	});
	
}); // end document ready