$(document).ready(function() {
	
	/******************************/
	/* JS TO DISPLAY CHAPTER LIST */
	/******************************/
	
	$('div#header ul.handbookNav li.view_chapters').mouseover(function() {
		var left = $(this).offset().left;
		var top = $(this).offset().top;
		$('ol#chapterList').css({left:left + 1,top:top + 44});
		$(this).addClass('on');
		if ($('ol#chapterList').css('display') == 'none') $('ol#chapterList').css({display:'block'}); // Hack for IE 6
	});
	$('div#header ul.handbookNav li.view_chapters').mouseout(function() {
		$(this).removeClass('on');
		if ($('ol#chapterList').css('display') == 'block') $('ol#chapterList').css({display:'none'}); // Hack for IE 6
	});
	
	$('#search input:first').click(function() {
		var strSearch = $(this).val();
		var strDefault = 'Enter search term here';
		if (strSearch == strDefault) {
			$(this).val('');
		}
	});
	
	$('#search input:first').blur(function() {
		var strSearch = $(this).val();
		var strDefault = 'Enter search term here';
		if (strSearch == '') {
			$(this).val(strDefault);
		}
	});
});