


$(window).load(function () {
    $("#reveal").fadeIn(3000);
	$("#col-lt-home h1").fadeIn(5000);
	$("#logo").fadeIn(3000);
  });


// -------------------------------------------------------------------
// FOR EXTERNAL WINDOWS & XHTML without target tag
// -------------------------------------------------------------------
function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;


