// ---------- REMOVE FOCUS ---------- //
function removeFocusOnAllLinks(){
for(var i=0 ; i < document.links.length ; i++)
document.links[i].onfocus=blurLink;
}
function blurLink() {
if (this.blur) this.blur();
}
window.onload=removeFocusOnAllLinks;
// ---------- REMOVE FOCUS ---------- //



// ---------- GOOGLE ANALYTICS ---------- //
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-4859369-3");
pageTracker._trackPageview();
} catch(err) {}
// ---------- GOOGLE ANALYTICS ---------- //