/*
 * This javascript file contains the javascript for the blocks in the
 * right bar. It is in a separate file, so the right block can be
 * embedded in other sites without needing to include all of our
 * javascript.
 */

$(document).ready(function(){
	$('.is-detail').hide();
	$('.has-detail').click(function() {
		/* Lookup the corresponding -detail element and toggle
		 * it */
		$('#' + this.id + '-detail').toggle('slide');
		return false;
	});
});

