
	jQuery(document).ready(function() {
		var divShareIsActive = 0 ;
		$('#others').click(function() {
			$('#globe').fadeIn('fast') ;
		});
		$('#others').mouseout(function() {
			divShareIsActive = 0 ;
			setTimeout(function(){ if( divShareIsActive == 0 ) { $('#globe').fadeOut() } }, 500) ;
		});
		$('#globe').mouseout(function() {
			divShareIsActive = 0 ;
			setTimeout(function(){ if( divShareIsActive == 0 ) { $('#globe').fadeOut() } }, 500) ;
		});
		$('#globe').mouseover(function() {
			divShareIsActive = 1 ;
		});
		$('#sub').click(function() {
			$('#nav-sub').fadeIn('fast') ;
		});
		$('#sub').mouseout(function() {
			divShareIsActive = 0 ;
			setTimeout(function(){ if( divShareIsActive == 0 ) { $('#nav-sub').fadeOut() } }, 500) ;
		});
		$('#nav-sub').mouseout(function() {
			divShareIsActive = 0 ;
			setTimeout(function(){ if( divShareIsActive == 0 ) { $('#nav-sub').fadeOut() } }, 500) ;
		});
		$('#nav-sub').mouseover(function() {
			divShareIsActive = 1 ;
		});
	});

