	String.prototype.trim = function() { return this.replace(/^\s+|\s+$/, ''); };	
	var arr = Array();
	var itm = Array();
	var cont = 1;
	
	
	function _doMudarDestaque(){
		if (arr.length<=0){
			$.ajax({
			  url: "includes/acao.php?acao=noticia",
			  success: function(data) {
				data = data.trim();
				if (data!=""){
					itm = data.split('|');
					//for(i=0;i<itm.length;i++){	
						arr = itm[0].split('~~');	
					//}
					//document.getElementById('ref_noticia').href = "noticia.php?p=normal&codigo="+arr[0];
					document.getElementById('ref_noticia').href = "noticias/"+arr[2]+".html";
					document.getElementById('tit_noticia').innerHTML = arr[1];
					document.getElementById('img_noticia').src = "admin/upload/fotos/"+arr[3];						
				}
	
			  }
			});
		}else{			
			arr = itm[cont].split('~~');
			//document.getElementById('ref_noticia').href = "noticia.php?p=normal&codigo="+arr[0];
			document.getElementById('ref_noticia').href = "noticias/"+arr[2]+".html";
			document.getElementById('tit_noticia').innerHTML = arr[1];
			document.getElementById('img_noticia').src = "admin/upload/fotos/"+arr[3];
			cont++;				
		}
	
	}
	
	function _doMudarDepoimento(){
		//var teste = '<?=$_GET["teste"]?>';
		$.ajax({
		  url: "includes/acao.php?acao=depoimento",
			  success: function(data) {
				data = data.trim();
				
				if (data!=""){
					var com = data.split('~~');

					document.getElementById('aut_comentario').innerHTML = com[0];
					document.getElementById('tit_comentario').innerHTML = com[1];
					document.getElementById('com_comentario').innerHTML = com[2];
					document.getElementById('tit_cliente').innerHTML 	= '<strong>'+com[3]+'</strong>';
					if (com[4]!=''){					
						document.getElementById('div_comentario').style.height = com[5]+"px"; 
						document.getElementById('img_comentario').src = "admin/upload/depoimentos/"+com[4];
						document.getElementById('img_comentario').style.width  = com[6];
						document.getElementById('img_comentario').style.height = com[7];
						//if (teste=="1") alert(com[5]+"-"+com[6]+"-"+com[7]);						
					}
					else{
						document.getElementById('div_comentario').style.height = "10px"; 
						document.getElementById('img_comentario').src = "_img/depo_pc.png";
						document.getElementById('img_comentario').style.width  = '60px';
						document.getElementById('img_comentario').style.height = '49px';
					}
				}
	
			  }
			  
		});
		setTimeout("_doMudarDepoimento()",15000);			
			
	}	
