
//dom ready
jQuery(function(){

 jQuery('.maptooltip:visible').fadeTo(1,0.4);
 
 
 jQuery('.maptooltip').mouseenter(
	function(){
		jQuery(this).css('overflow','visible').css('z-index','999').fadeTo(100,1);
		jQuery(this).find('.manmaphidden').css('z-index','999').show(200);
	} //ends function
 ); //ends hover
 
 
 
 jQuery('.maptooltip').mouseleave(
 	function(){
		if ('this:animated'){
			jQuery('.manmaphidden:visible').stop(true,true).css('z-index','1').hide(40);
			jQuery('.maptooltip:visible').stop(true,true).css('z-index','1').fadeTo(100,0.4);
		}
	} //ends function
 ); //ends hover
 
 
 
 
 
}); //ends on dom ready




