	// table striping

	jQuery(document).ready(function() {
		jQuery("#contents-list li:even").addClass("even");
		jQuery("#contents-list li:odd").addClass("odd");
		jQuery(".pricing-list li:nth-child(4)").css("height","40px");
	});

	// ??
	var _sf_startpt=(new Date()).getTime()

	// google analytics
	
	  var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', 'UA-2211262-17']);
	  _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);
	  })();
	  
	 // set up popup event
	 	 
	 function bind_popup(slug) {
		jQuery('.'+slug+'-link').click(function() {
	 		// launch popup contact form
		 	// acg_lbcf_pop();
			jQuery("."+slug+"-popup").modal({
				overlayClose: true,
				opacity: 40,
				onOpen: function (dialog) {
					dialog.overlay.fadeIn('fast');
					dialog.container.fadeIn(500);
					dialog.data.fadeIn(500);
				},
				onClose: function (dialog) {
					dialog.container.fadeOut(300);
					dialog.overlay.fadeOut(300, function () { jQuery.modal.close(); });
				}
			});
		 	return false;
	 	});	 	
	 }	
