
function openWindow(url) {
	var popupWin = window.open(url)
	popupWin.focus();
}

$(document).ready(function () { 
    var nav_links = document.getElementById('nav')
      .getElementsByTagName('a');
    var selected = location.pathname;
    if (selected=='/'){
     selected='/home.do';	
    }
    for (var i = 0; i < nav_links.length; i++) {
      var link = nav_links[i].pathname;
      // fiddle IE's view of the link
      if (link.substring(0, 1) != '/')
        link = '/' + link;
      if (link.indexOf(selected)>-1)
        nav_links[i].setAttribute('class', 'selected');
    }
  });

//google analytics
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12242060-2']);
_gaq.push(['_trackPageview']);

(function() {
  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();

