function showAreaContacts(id, count) {
	
	for (var i=0; i <= count; i++){
		
		if (i == id){
			document.getElementById("Contacts" + i).className = "show";
		}else{
			document.getElementById("Contacts" + i).className = "hide";
		}
	}
}