$j = jQuery;

$j(document).ready(function () {
	$j("a.ga-track[title]").bind("click", function() {
		var title = escape($j(this).attr("title"));
		_gaq.push(['_trackPageview', '/downloads/' + title]);
	});

	/* past conference think 11 twist */
	$j("#twister").bind("click", function() {
		$j("#twist").toggle();
	});

	jQuery("a[rel*=fancyvideo]").fancybox({
        overlayShow: true,
        frameWidth:598,
        frameHeight:360
	});
});


