// JavaScript Document


// CUFON
Cufon.replace('h1');
Cufon.replace('h2');


// SCHADOW EFFECT
//function checkheight(){
// if(document.body.clientHeight < 560){
// document.body.style.overflowY = "auto";
// } else {
// document.body.style.overflowY = "hidden";
// }
//
// if(document.body.clientWidth < 883){
// document.body.style.overflowX = "auto";
// } else {
// document.body.style.overflowX = "hidden";
// }
//}
//
//window.onload = checkheight;


// EXTERNAL (_BLANK)
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;
