//***********************************************************************************
//used on the future creekmont page
function switchfuturephoto(newphoto, id){

document.getElementById('mainimage').setAttribute("src",newphoto);
var initialState = {
	back: function(){
		alert("We are BACK at initial state.");
	},
	forward: function(){
		alert("We are FORWARD at initial state (you should never see this alert.");
	}
};

dojo.undo.browser.setInitialState(initialState);
	
var bindArgs = {
	url: "ajaxgetphotodesc.php?id=" + id,
	load: function(type, data, evt){
		document.getElementById("photodetail").innerHTML=data;
},
	backButton: function(){
	},
	forwardButton: function(){
	},
	cache:false,
	changeURL: "foo"+(new Date()).getTime()
};
var canBind = dojo.io.bind(bindArgs);

}