// Fitness First LinkedIn Profile
// Declare the variable
var shareInt;

$(document).ready(function() {
	
	shareInt = 0;
		
	$("#linkedIn").bind('mouseover', function() {
		$(".linkedIn-holder").css({'display' : 'block'});
		clearInterval(shareInt);
		delete shareInt;
	}).mouseleave(function() {
		shareInt = setInterval("shareHide();", 1000);
	});
	
	$(".linkedIn-holder").bind('mouseover', function() {
		clearInterval(shareInt);
		delete shareInt;
	}).mouseleave(function() {
		shareInt = setInterval("shareHide();", 1000);
	});
		
});

function shareHide() {
	$(".linkedIn-holder").fadeOut(200).css({'display' : 'none'});
	clearInterval(shareInt);
	delete shareInt;
}

