function hideallbut(id){
        var divs = document.getElementById("grounds").getElementsByTagName("div");
        for(i = 0; i < divs.length; i++)
                {
                divs[i].style.display = "none";
}
        document.getElementById(id).style.display = "";}

image01= new Image()
image01.src = "/images/house_norm.png"
image02= new Image()
image02.src = "/images/house_roll.png"
image03= new Image()
image03.src = "/images/gardens_norm.png"
image04= new Image()
image04.src = "/images/gardens_roll.png"
image05= new Image()
image05.src = "/images/details_norm.png"
image06= new Image()
image06.src = "/images/details_roll.png"
image07= new Image()
image07.src = "/images/activities_norm.png"
image08= new Image()
image08.src = "/images/activities_roll.png"
image09= new Image()
image09.src = "/images/travel_norm.png"
image10= new Image()
image10.src = "/images/travel_roll.png"
image11= new Image()
image11.src = "/images/contact.png"
image12= new Image()
image12.src = "/images/contact_roll.png"
image13 = new Image()
image13.src = "/images/interior_norm.png"
image14 = new Image()
image14.src = "/images/interior_roll.png"

function rollover(imagename, newsrc){
document.images[imagename].src=newsrc.src
}

function popUpHouse(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=700,left = 240,top = 43');");
}
function popUpInterior(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=700,left = 340,top = 43');");
}
function popUpGardens(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=700,left = 440,top = 43');");
}
function popUpContact(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=430,height=240,left = 340,top = 600');");
}

$(document).ready(function(){
	$("#containerC").hide();
	$("#containerD").hide();
	$("#containerE").hide();
	$("#d").click(function(){
		$("#containerC").show("slow");
		$("#containerD").hide("slow");
		$("#containerE").hide("slow");
	});
	$("#a").click(function(){
		$("#containerD").show("slow");
		$("#containerC").hide("slow");
		$("#containerE").hide("slow");
	});
	$("#t").click(function(){
		$("#containerE").show("slow");
		$("#containerD").hide("slow");
		$("#containerC").hide("slow");
	});
});