$(document).ready(function(){

		$('#NN_Nav > li').each(function(i){
			$(this).hover(function(){  
				$(this).find('ul.nav2').show();
			},function(){
				$(this).find('ul.nav2').hide();
			});
		});
		$('.nav2 > li').each(function(i){
				$(this).hover(function(){  
					$(this).find('ul.nav3').show();
				},function(){
					$(this).find('ul.nav3').hide();
				});
			});
			
		});
	
		
/* Cache */
try {
	document.execCommand("BackgroundImageCache",false,true);
} catch (e) {
	
}
var bannerImg = new Array();
		// Enter the names of the images below
		//bannerImg[1]="/images/slideshow/courthouse-01.jpg";
		bannerImg[0]="/images/slideshow/special_masters.jpg";
		//bannerImg[2]="/images/slideshow/judges.jpg";
var newBanner = 0;
var totalBan = bannerImg.length;

function cycleBan() {
  newBanner++;
  if (newBanner == totalBan) {
    newBanner = 0;
  }
//  document.banner.src=bannerImg[newBanner];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cycleBan()", 5*1000);
}
window.onload=cycleBan;