var sc = document.createElement("script"); 
sc.type = "text/javascript"; 
// SRC do Google 
sc.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?rand=' + Math.random(); 
var timer = setTimeout(function(){ 
 
if (typeof jQuery == 'function') return; 
        
var sc = document.createElement("script"); 
      
sc.type = "text/javascript"; 
       
// SRC local 
       
sc.src = 'http://www.pinceladasdaweb.com.br/blog/js/jquery-1.3.2.min.js'; 
       
document.getElementsByTagName("head")[0].appendChild(sc); 
  
// Tempo em milisegundos antes de carregar o arquivo local. 
}, 200); 
 
 
sc.onload = sc.onreadystatechange =  function(e){ 
   
clearTimeout(timer); 
} 
document.getElementsByTagName("head")[0].appendChild(sc);