// code controls setting up the javascript necessary to swap out the html code 
//   for home page rollovers
//
// Each section, with the exception of the original, 
//   sets several varaibles before calling a module 
//   which writes the javascript code to handle the swap.  
//
// Written 2008 January 11 - Dj Stover
//  Copyright 2008 - Web Creations By Z - All Rights Reserved
//<!--

function changeVisibilityBathroom()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Bathrooms").style.visibility="visible";
}

function changeVisibilityBathroomRestore()
{
document.getElementById("Bathrooms").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}




function changeVisibilityExterior()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Exterior").style.visibility="visible";
}

function changeVisibilityExteriorRestore()
{
document.getElementById("Exterior").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}




function changeVisibilityFoundation()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Foundation").style.visibility="visible";
}

function changeVisibilityFoundationRestore()
{
document.getElementById("Foundation").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}




function changeVisibilityKitchen()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Kitchen").style.visibility="visible";
}

function changeVisibilityKitchenRestore()
{
document.getElementById("Kitchen").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}






function changeVisibilityInterior()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Interior").style.visibility="visible";
}

function changeVisibilityInteriorRestore()
{
document.getElementById("Interior").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}




function changeVisibilityGrounds()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Grounds").style.visibility="visible";
}

function changeVisibilityGroundsRestore()
{
document.getElementById("Grounds").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}





function changeVisibilityHVAC()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("HVAC").style.visibility="visible";
}

function changeVisibilityHVACRestore()
{
document.getElementById("HVAC").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}




function changeVisibilityRoof()
{
document.getElementById("house_rollover").style.visibility="hidden";
document.getElementById("Roof").style.visibility="visible";
}

function changeVisibilityRoofRestore()
{
document.getElementById("Roof").style.visibility="hidden";
document.getElementById("house_rollover").style.visibility="visible";
}
//-->

