// JavaScript Document for 33olds.com site

// This will allow the internal html to be changed
// when an item is selected from the navigation menu
function changeHTML(path) {
	$(document).ready(function() { 
		$("#contentDiv").load(path); 
		} );
}

// This will allow the internal html to be changed
// when an owner is selected from the dropdown menu
function showOwner(path) {
	$(document).ready(function() { 
		$("#owners").load(path); 
		} );
}
