var trackerId = "UA-950385-25";
var ga_url = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.")+"google-analytics.com/ga.js"

function _checkGAT() {
  if (typeof _gat == "undefined") { 
    setTimeout(_checkGAT, 200); 
  } else {
    try {
      var pageTracker = _gat._getTracker(trackerId);
      pageTracker._trackPageview();
    } catch(err) {}
  }
}


if (typeof jQuery != "undefined"){ 
	//	JQUERY VERSION
	jQuery(document).ready(function(){
		jQuery("head").append("<script type='text/javascript' src='"+ga_url+"'></script>");
		
		_checkGAT();
	});
}else if(typeof Prototype != "undefined"){
	//	PROTOTYPE VERSION
	Event.observe(window, 'load', function(e) {
		$$("head").first().appendChild(new Element('script', {	src: ga_url	}));

	_checkGAT();
	});
}
