// Animation headerimage

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 5000,
		autostop: 0
		// choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

// Open links in _blank window xhtml strict valid function //

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;
