// JavaScript Para o Box da Home

	function Esconde(div,miniatura) 
		{
			document.getElementById(div).style.display = 'none';
			document.getElementById(miniatura).className = 'materia-boxhome-bordabranca';			
		}

	function Mostra(div,miniatura)  
		{
			document.getElementById(div).style.display = '';
			document.getElementById(miniatura).className = 'materia-boxhome-borda';			
		}
	
	function box1()
		{
			Mostra('Box1', 'imgBox1');
			Esconde('Box2', 'imgBox2');
			Esconde('Box3', 'imgBox3');
			Esconde('Box4', 'imgBox4');
		}
	function box2()
		{
			Mostra('Box2', 'imgBox2');
			Esconde('Box1', 'imgBox1');
			Esconde('Box3', 'imgBox3');
			Esconde('Box4', 'imgBox4');
		}
	function box3()
		{
			Mostra('Box3', 'imgBox3');
			Esconde('Box1', 'imgBox1');
			Esconde('Box2', 'imgBox2');
			Esconde('Box4', 'imgBox4');
		}
	function box4()
		{
			Mostra('Box4', 'imgBox4');
			Esconde('Box1', 'imgBox1');
			Esconde('Box2', 'imgBox2');
			Esconde('Box3', 'imgBox3');
		}
