$(document).ready(function() { //start main  function


//rollover backgropund in top navigation
	$('ol#toc li').hover(function() {
     	$(this).addClass("current");
   	  },function(){
     	$(this).removeClass("current");
   });
	

  
  //hint is text that appears and disappears within the input box
  $('input[title!=""]').hint();

}); //end main function
