/* ------------------------------------------------------------
 * PROJECT        : FHSC Interface Standard
 * FILENAME       : jqtutorial.js
 * ------------------------------------------------------------
 * DATE CREATED   : 19 Feb 2007
 * LAST UPDATED   : 16 Mar 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * SET TREE BG IMAGE FOR FIRST AND LAST ITEMS
 * ------------------------------------------------------------ */

$(document).ready(function(){
	
  // set the initial states of the nav tree
	$("ul.tutn > li:first-child") .addClass("first");
	$("ul.tutn   li:last-child")  .addClass("last");

	}); // end ready function
