// JavaScript Document
function mouseover(id, page){	
	
	if(page != "family.php"){
		document.getElementById("family").style.backgroundImage="url('images/family.jpg')";
	}
	
	if(page != "company.php"){
		document.getElementById("company").style.backgroundImage="url('images/company.jpg')";
	}
	
	if(page != "community.php"){
		document.getElementById("community").style.backgroundImage="url('images/community.jpg')";
	}
	
	if(page != "happenings.php"){
		document.getElementById("happenings").style.backgroundImage="url('images/happenings.jpg')";
	}
	
	if(page != "parties.php"){
		document.getElementById("parties").style.backgroundImage="url('images/parties.jpg')";	
	}
	
	if(page != "reservations.php"){
		document.getElementById("reservation").style.backgroundImage="url('images/reservation.jpg')";	
	}
	
	if(page != "contact.php"){
		document.getElementById("contact").style.backgroundImage="url('images/contact.jpg')";	
	}
	
	

//	document.getElementById(imgId).style.backgroundImage="url('images/"+imgId+"_over.jpg')";		
	document.getElementById(id).style.backgroundImage="url('images/"+id+"_over.jpg')";
	
	
}
	
	
	
	function mouseout(id, page) {	
	
	//document.getElementById(imgId).style.backgroundImage="url('images/"+imgId+".jpg')";		
	document.getElementById(id).style.backgroundImage="url('images/"+id+".jpg')";
	
	
	}
	
	

	


