/**
 *	Share button dropdown
 */
var childInputHasFocus = false;

/*
$(document).ready(function(){
	$('.share_btn').hover(
		function(){
			$('.share_place .share_holder_bg').css('display', 'block');
		},
		function (){
			// if leave
			setTimeout('checkFocus()', 2000);
		}
	);
	$('.share_place .share_holder_bg').hover(
		// leave button but not  block 
		function(){
            childInputHasFocus = true;
		},
		// leave button & block
		function (){
			$('.share_place .share_holder_bg').css('display', 'none');
			childInputHasFocus = false;
		}
	);
	
});

*/

/**
 *	Check share button focus
 */
/*
function checkFocus(){
	if(childInputHasFocus) {
		//console.log('has focus');
	} else {
		$('.share_place .share_holder_bg').css('display', 'none');
		childInputHasFocus = false;
	}
}
*/
