// Hours JS Script
// Author: Patrick Cole
// www.patrickcole.com


// This script is designed to condense the hours area down so that it is more readable with content.
$(function() {

	// Hide the areas so that they can slide down, once clicked:
	$('#instructor-hours').hide();
	$('#tutor-hours').hide();
	
	// The slide toggle function to slideUP and slideDown:
	$('#instructor a').click(function(){ $('#instructor-hours').slideToggle("slow"); });
	$('#tutor a').click(function(){ $('#tutor-hours').slideToggle("slow"); });
});

