//----------------------------------------------------------------------------------------------
// FUNDOS imagem, caminho, repete, cor, fixo, posicao
function mudabgs(bg,cam,repeat,cor,att,pos){
	var expdate = new Date (); 
    expdate.setTime(expdate.getTime() + (24 * 60 * 60 * 1000 * 31 * 9)); 
    SetCookie('background', bg, expdate);

	// Vai procurar um id no body do site, para mudar o fundo
	if(bg != ""){document.getElementById("bodyd").style.background = "url(\"" + cam + "\")";}
	if(repeat != ""){document.getElementById("bodyd").style.backgroundRepeat = repeat;}
	if(cor != ""){document.getElementById("bodyd").style.backgroundColor=cor;}
	if(att != ""){document.getElementById("bodyd").style.backgroundAttachment= att;}
	if(pos != ""){document.getElementById("bodyd").style.backgroundPosition= pos;}
} 
//----------------------------------------------------------------------------------------------
