var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1597511-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';
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

$(document).ready(function() {
	$('.main').fadeIn(300, function() {});

	function chainFadeIn(el, i) {
		var lastIndex = el.length - 1;
		el.eq(i).fadeIn(300, function() {
			if (i < lastIndex) {
				chainFadeIn(el, i+1);
			}
		});
	}
	chainFadeIn($('article.homepage'), 0);

	$('#vimeo').bind('mouseover', function(e) {
		$('#vimeo').css('z-index', '-1');
		_gaq.push(['_setAccount', 'UA-1597511-2']);
		_gaq.push(['_trackEvent', 'Videos', 'Play', 'Homepage Vimeo video: Hey Cool Kid', 'http://player.vimeo.com/video/15494286']);
	});
});

