// JavaScript Document
function highlightContent2(obj)
{
	if(obj.className == "content2")
	{
		obj.className = "content2 highlight";
	}
	else if(obj.className == "content2 highlight")
	{
		obj.className = "content2";
	}
	if(obj.className == "content2 alternate")
	{
		obj.className = "content2 alternate highlight";
	}
	else if(obj.className == "content2 alternate highlight")
	{
		obj.className = "content2 alternate";
	}
	
}

function highlightHomePortfolio(obj)
{
	if(obj.className == "item")
	{
		obj.className = "item highlight";
	}
	else if(obj.className == "item highlight")
	{
		obj.className = "item";
	}
	if(obj.className == "alternate")
	{
		obj.className = "alternate highlight";
	}
	else if(obj.className == "alternate highlight")
	{
		obj.className = "alternate";
	}
	
}
