function overNav(changeCell)
{
	
	cell = document.getElementById(changeCell);
	cell.style.background='rgb(50,102,77)';
	cell.style.color='white';
	
}

function outNav(changeCell)
{
	cell = document.getElementById(changeCell);
	cell.style.color='rgb(30,60,30)';
	cell.style.background='rgb(228,228,228)';
	
}

function overSubNav(changeCell)
{
	cell = document.getElementById(changeCell);
	cell.style.textDecoration='underline';
	
}

function outSubNav(changeCell)
{
	cell = document.getElementById(changeCell);
	cell.style.textDecoration='none';
} 

function gotoLink(cell)
{
	
	
	
	switch(cell)
	{
		
		case 'home':
			window.location="index.html";
			break;
		
		case 'nav1':
			
			outNav(cell);
			window.location="index.html";
			break;
			
		case 'nav2':
			
			outNav(cell);
			window.location="success_stories.html";
			break;
		
		case 'nav3':
			outNav(cell);
			window.location="services.html";
			break;
			
		case 'nav4':
			outNav(cell);
			window.location="about.html";
			break;
			
		case 'nav5':
			outNav(cell);
			window.location="blog";
			break;
			
		case 'nav6':
			outNav(cell);
			window.location="contact.html";
			break;
	}
}

/*$(document).ready(function(){
		$obj = $("a.readMore");
		if($obj!=null)
                $obj.hover(
                function(){$(this).css("text-decoration","underline");},
                function(){$(this).css("text-decoration","none");}
            );

});*/
