
function HideDetails()
	{
		var daBox = document.getElementById("boxProjectDetails");
		daBox.style.visibility= "hidden";
		document.getElementById("imgPortfolio").style.visibility="visible";
	}

function ShowDetails(sProject)
	{
		document.getElementById("imgPortfolio").style.visibility="hidden";
			
		var daBox = document.getElementById("boxProjectDetails");
		daBox.style.visibility= "visible";
				
				
		switch (sProject)
		{
			case "xsgear":
				daBox.innerHTML="XSGEAR has been exploding on the world scene with all sorts of awesome marketing materials for the 2nd  best selling energy drink "
					+ "in the United States, XS Energy."
					+ "<p>Steelbrain has been there nearly from the start, providing a wide range of services to keep this fast growing company running smoothly."
					+ " Currently, Steelbrain acts as primary architect and code builder for all new stores, as well as maintaing the code base for all existing stores, the backend administrations, multiple databases, "
					+ "email server management, web server management, database management, and  technology recommendations. In addition, there is a lot of  XS energy drink "
					+  "consumed in the office to keep up with the increasing demand.</p>"
					+ "<p><strong>Core Technologies:</strong> ASP/ASP.NET, SQL Server 2000, C#, JavaScript, DHMTL</p>"
					+ "<p><em>Site Design by XSGEAR internal design staff.</em></p>";
				break;	
	
			case "fiorini":
				daBox.innerHTML="Fiorini Sports has been in the winter sports business since 1962. We were called in by a partner to "
					+ "develop a strong backend to drive a dynamic site to display their range of products and services, as well as to "
					+ "implement the front end design developed by our partner, including a newsletter signup, dynamic navigation menus, and "
					+ "dynamic What's Hot display of popular products."
					+ "<p><strong>Core Technologies:</strong> ASP.NET, SQL Server 2000, C#, JavaScript, DHTML</p>";
				break;
			
			case "rude":
				daBox.innerHTML="Planet Rude is the website for the Seattle band Lee Rude & the Trainwrecks. The site was designed to showcase "
					+ "the band's '2-fisted Northwest country' style of music as well as offer fans a place to find out about upcoming shows,"
					+ " the band members, and other special events";
				break;	
							
		}
	}
			

