// JavaScript Document

// Add bookmark script
// -----------------------------------------------------------------
function addBookmark(title,url) {   
     if (window.sidebar) {   
          window.sidebar.addPanel(title, url,"");   
     } else if( document.all ) {   
          window.external.AddFavorite( url, title);   
     } else if( window.opera && window.print ) {   
          return true;   
     }   
}
// clears and replaces text in form input fields and textareas
// -----------------------------------------------------------------
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 
function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

$(document).ready(function() {

$('#nav li').hover(
	function() {
		$(this).children('ul').css({display: 'block'});
	},function() {
		$(this).children('ul').css({display: 'none'});
}
);

						   });
