/* 
############################################################
# -------------------------------------------------------- #
# SOUDADO.COM © Todos os direitos reservados               #
# -------------------------------------------------------- #
############################################################
*/

function fecharDEPO(id)
{
	document.getElementById('depo' + id).style.visibility = 'hidden';
	document.getElementById('depo' + id).style.padding = '0';
	document.getElementById('depo' + id).style.top = '-1500px';
	document.getElementById('depo' + id).style.position = 'absolute';
	document.getElementById('depo' + id).innerHTML = '';	
	
	document.getElementById('headerDEPO' + id).onclick=function(){ xajax_depo(id); }
	document.getElementById('headerDEPO' + id).onmouseover=function(){ fundo(id,'over'); }
	document.getElementById('headerDEPO' + id).onmouseout=function(){ fundo(id,'out'); }
	
	fundo(id,'over');
}

function fundo(pid,acao)
{
	switch(acao)
	{
		case "over":
			document.getElementById('headerDEPO' + pid).style.background = "url(imagens/gradientes/depo.abrir.gif) top right no-repeat";
			document.getElementById('headerDEPO' + pid).style.border = "#be1414 solid 1px";
			document.getElementById('headerDEPO' + pid).style.color = "#be1414";
		break;
		
		case "over2":
			document.getElementById('headerDEPO' + pid).style.background = "url(imagens/gradientes/depo.fechar.gif) top right no-repeat";
			document.getElementById('headerDEPO' + pid).style.border = "#be1414 solid 1px";
			document.getElementById('headerDEPO' + pid).style.color = "#be1414";
		break;
		
		case "out":
			document.getElementById('headerDEPO' + pid).style.background = "#FFF";
			document.getElementById('headerDEPO' + pid).style.border = "#CCC solid 1px";
			document.getElementById('headerDEPO' + pid).style.color = "#000";
		break;
		
		case "out2":
			document.getElementById('headerDEPO' + pid).style.background = "url(imagens/gradientes/depo.aberto.gif) top right no-repeat";
			document.getElementById('headerDEPO' + pid).style.border = "#30bd14 solid 1px";
			document.getElementById('headerDEPO' + pid).style.color = "#30bd14";
		break;
		
	}
	
}


function move_star(centerid,id,acao)
{
	// Zera todos
	for(x=1;x<=5;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='bottom right';
	
	switch(acao)
	{
		case 1:
			for(x=1;x<=id;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='top';				
		break;
		
		case 0:
			
			x=document.getElementById("starinfo_"+centerid).value;
			for(xx=1;xx<=x;xx++) document.getElementById('star'+centerid+xx).style.backgroundPosition='top right';
		break;
		
		case 2:
		
			for(x=1;x<=id;x++) document.getElementById('star'+centerid+x).style.backgroundPosition='top';
			document.getElementById("starinfo_"+centerid).value = id;
		break;
		
	}
	
}