/**
 * Tracking Google Analytics
 * 
 * @name	ga.js
 * @version	1.0
 * @since	2011-09-07
 * @author	Rémy Vuong <rvuong@leschinois.com>
 */

var _gaq = _gaq || [];
_gaq.push(['_setAccount', GA_CODE]);
_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);
})();


