﻿/*
	jQuery show the tutorial description when the title is hovered over
	RJB 05/17/08
*/
$(document).ready(function(){
	// On load, hide sub levels
	$("table.tutorial").hide();
	$("dd").hide();
	
	// on click, show next level
	// clicking on an h3 reveals the div 
	$("h3 a").click(function(){
		$(this).parent().next().toggle("show");
		return false;
	});
	$("h4 a").click(function(){
		$(this).parent().next().toggle("show");
		return false;
	});
	$("dt a").click(function(){
		$(this).parent().next().toggle("show");
		return false;
	});

});

