// JavaScript Document
/*
	CaraNaWeb Agência Digital
	01/07/2010
	Rodrigo Dias
*/

/* Função para apagar inputs */
function apaga(i){
	switch(i){
	case 1:
	document.getElementById('nomeNewstopo').value = '';
	break;
	case 2:
	document.getElementById('emailNewstopo').value = '';
	break;
	case 3:
	document.getElementById('campoBusca').value = '';
	break;
	case 4:
	document.getElementById('campoBusca2').value = '';
	break;
	case 5:
	document.getElementById('searchvideo').value = '';
	break;
	}
}
/* Função para apagar inputs */

/* Função para marcar tab */
function marcaTab(i){
	switch(i){
		case 1:
		document.getElementById('first').style.backgroundColor = '#000';		
		document.getElementById('second').style.backgroundColor = '#b6b6b6';
		document.getElementById('third').style.backgroundColor = '#b6b6b6';
		break;
		case 2:
		document.getElementById('first').style.backgroundColor = '#b6b6b6';
		document.getElementById('second').style.backgroundColor = '#000';
		document.getElementById('third').style.backgroundColor = '#b6b6b6';
		break;
		case 3:
		document.getElementById('first').style.backgroundColor = '#b6b6b6';
		document.getElementById('second').style.backgroundColor = '#b6b6b6';
		document.getElementById('third').style.backgroundColor = '#000';
		break;
	}
}
/* Função para marcar tab */

/* Função para aumentar banner */
/*function aumentaDiminui(i){	
	var escreveDiv = document.getElementById('expand');
	switch(i){
		case 1:
escreveDiv.innerHTML = '<a href="javascript:;" title="Publicidade"><img src="images/publicidade/arroba-exemplo-extensivel.gif" width="596" height="496" alt="Publicidade" /></a>';
		break;
		case 2:
escreveDiv.innerHTML = '<a href="javascript:;" title="Publicidade"><img src="images/publicidade/arroba-exemplo.jpg" width="298" height="248" alt="Publicidade" /></a>';
		break;
	}
}
function aumentaDiminui2(i){	
	var escreveDiv = document.getElementById('expand2');
	switch(i){
		case 1:
escreveDiv.innerHTML = '<a href="javascript:;" title="Publicidade"><img src="images/publicidade/arroba-exemplo-extensivel.gif" width="596" height="496" alt="Publicidade" /></a>';
		break;
		case 2:
escreveDiv.innerHTML = '<a href="javascript:;" title="Publicidade"><img src="images/publicidade/arroba-exemplo.jpg" width="298" height="248" alt="Publicidade" /></a>';
		break;
	}
}*/
/* Função para aumentar banner */
