
// BEGIN Google Analytics Code
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19493494-1']);
  _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';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
// END Google Analytics Code

String.prototype.capitalize = function(){
   return this.replace( /(^|\s)([a-z])/g , function(m,p1,p2){ return p1+p2.toUpperCase(); } );
  };

function navContext(text, link) {
	document.getElementById('nav-context').innerHTML = text;
	document.getElementById('nav-context').href = link;
	if (1) {
		document.getElementById('nav-sec-user').innerHTML = text;
		document.getElementById('nav-sec-user').href = link;
	};
  };




