// JavaScript Document
function setContent(var1){
	var subheader = document.getElementById("infoheader")
	var subcontent = document.getElementById("infocontent")
	document.getElementById("nav1").className = 'none'
	document.getElementById("nav2").className = 'none'
	document.getElementById("nav3").className = 'none'
	document.getElementById("nav4").className = 'none'
switch (var1){
case 1: 
subheader.innerHTML = "Floor plan Illustrations";
subcontent.innerHTML = "Standard line drawings or enhanced stylized plan illustrations with finish features and furniture are available.";
document.getElementById("nav1").className = 'active';

break;
case 2: 
subheader.innerHTML = "Elevation Renderings";
subcontent.innerHTML = "Modeling and rendering services to visualize product in various design stages – from pre-build through completion.";
document.getElementById("nav2").className = 'active';

break;
case 3: 
subheader.innerHTML = "Marketing Materials";
subcontent.innerHTML = "Marketing materials can be created quickly from working drawings in a wide range of CAD formats. We customize layouts, fonts, logos and line styles to maintain the uniform graphic/brand guidelines for your company or development.";
document.getElementById("nav3").className = 'active';

break;
case 4: 
subheader.innerHTML = "Integartion Services";
subcontent.innerHTML = "We can program a custom visual interface for your sales center kiosks that combines any of our products into a single, easy-to-use, consumer-friendly interface. We also build tools that allow your team to easily manage all of your communities' marketing materials. And we can utilize your existing infrastructure.";
document.getElementById("nav4").className = 'active';

break;
default : 
subheader.innerHTML = "Floor plan Illustrations";
subcontent.innerHTML = "Standard line drawings or enhanced stylized plan illustrations with finish features and furniture are available.";
document.getElementById("nav1").className = 'active';


}
Event.stop();
}