$(document).ready(function(){

	$('#contactList > li').each(function(i){
		$(this).hover(function(){  
			$(this).find('ul.contactList2').show();
			document.getElementById('myTable').style.visibility='hidden';
		},function(){
			
		});
		
	});
	

});
