
<!--

//////////////////
//Image Swapping//
//////////////////

if (document.images)

{
	homeon = new Image();
	homeon.src = "images/home_on.gif";
	profileon = new Image();
	profileon.src = "images/profile_on.gif";
	portfolioon = new Image();
	portfolioon.src = "images/portfolio_on.gif";
	contacton = new Image();
	contacton.src = "images/contact_on.gif";
	emailon = new Image();
	emailon.src = "images/email_on.gif";
	arrowon = new Image();
	arrowon.src = "images/detail_arrow_on.gif";
	raveson = new Image();
	raveson.src = "images/raves_on.gif";

	homeoff = new Image();
	homeoff.src = "images/home_off.gif";
	profileoff = new Image();
	profileoff.src = "images/profile_off.gif";
	portfoliooff = new Image();
	portfoliooff.src = "images/portfolio_off.gif";
	contactoff = new Image();
	contactoff.src = "images/contact_off.gif";
	emailoff = new Image();
	emailoff.src = "images/email_off.gif";
	arrowoff = new Image();
	arrowoff.src = "images/detail_arrow_off.gif";
	ravesoff = new Image();
	ravesoff.src = "images/raves_off.gif";

}

function swapIm(iname, gname)

{
        iname.src = gname.src;
}

//////////////
//Menu Items//
//////////////

function addProfile()
{
document.write("<a onmouseover='swapIm(profile, profileon); return true' href='profile.html' onmouseout='swapIm(profile, profileoff)'><img name='profile' src='images/profile_off.gif' width='54' height='33' border='0'></a>");
}

function addPortfolio()
{
document.write("<a onmouseover='swapIm(portfolio, portfolioon); return true' href='portfolio.html' onmouseout='swapIm(portfolio, portfoliooff)'><img name='portfolio' src='images/portfolio_off.gif' width='69' height='33' border='0'></a>");
}

function addContact()
{
document.write("<a onmouseover='swapIm(contact, contacton); return true' href='contact.html' onmouseout='swapIm(contact, contactoff)'><img name='contact' src='images/contact_off.gif' width='63' height='33' border='0'></a>");
}

function addHome()
{
document.write("<a onmouseover='swapIm(home, homeon); return true' href='index.html' onmouseout='swapIm(home, homeoff)'><img name='home' src='images/home_off.gif' width='55' height='33' border='0'></a>");
}

function addRaves()
{
document.write("<a onmouseover='swapIm(raves, raveson); return true' href='raves.html' onmouseout='swapIm(raves, ravesoff)'><img name='raves' src='images/raves_off.gif' width='55' height='33' border='0'></a>");
}

function newProfile()
{
    var theDiv = document.getElementById("info_block");
    var newDiv = document.createElement("div");
     newDiv.innerHTML="<b><i>Griechenland</i> ist <u>EU Meister</u>!</b>"
     theDiv.parentNode.replaceChild(newDiv, theDiv);
}

////////
//copy//
////////

function addCopy()
{
document.write("<span class='copy'>&copy;" + new Date().getFullYear() + "&nbsp;<font color='#AEAE7A'>|&nbsp;</font>www.<font color='white'>studio-three</font>.com<font color='#AEAE7A'>&nbsp;|&nbsp; </font>all rights reserved</span>");
}

//////////////////////////
//change out text at div//
//////////////////////////

function newServices()
{
    var theDiv = document.getElementById("info_block");
    var newDiv = document.createElement("div");
    newDiv.innerHTML="<span class='detail_title_dg'>services</span><br><ul><li>structural design</li><li>interior design</li><li>finishes and fixtures, consultation and procurement</li><li>color consultations</li><li>landscape/master plan consultation</li><li>construction administration for designed projects</li></ul>"
    theDiv.replaceChild(newDiv, theDiv.childNodes[0]);
}

function newPhilosophy()
{
    var theDiv = document.getElementById("info_block");
    var newDiv = document.createElement("div");
    newDiv.innerHTML="<span class='detail_title_dg'>philosophy</span><br><span class='detail_info_dg'>Our approach to design enables us to create living environments for people that truly resonate with their lifestyles, dreams and aspirations. We take a holistic view of our design practice, melding interior and exterior design with traditional design services. We build successful relationships that are anchored on developing a deep understanding of how our clients want to live. We spend time eliciting their dreams, helping to identify and articulate what would make their home a meaningful reflection of their style and aesthetic. Our work is a translation of those dreams into the design elements that make them a reality.</span>"
    theDiv.replaceChild(newDiv, theDiv.childNodes[0]);
}

function newReferences()
{
    var theDiv = document.getElementById("info_block");
    var newDiv = document.createElement("div");
    newDiv.innerHTML="<span class='detail_title_dg'>references</span><br><span class='detail_info_dg'>Available upon request.</span>"
    theDiv.replaceChild(newDiv, theDiv.childNodes[0]);
}

function newBackground()
{
    var theDiv = document.getElementById("info_block");
    var newDiv = document.createElement("div");
    newDiv.innerHTML="<span class='detail_title_dg'>background</span><br><span class='detail_info_dg'>Studio3 was founded in 1999 and has received recognition in Residential Architect, Metropolitan Home, The San Mateo Times, and the Knob Hill Gazette. The firm has also been featured on the Home & Garden TV program.<br><br>The partners of Studio3 have been collaborating on projects since 1997 and have worked for award-winning design firms.  Bess Wiersema, Principal, graduated from Virginia Tech with a Bachelor of Architecture and has been providing design services in California since 1995.<br/><br/>Associate member, American Institute of Architects</span>"
    theDiv.replaceChild(newDiv, theDiv.childNodes[0]);
}


-->
