/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
/*this java script initializes the superfish script that works the navigation menu. It has been customized for chesapeakecity.com*/

var newPhoto=new Image();/*Preload the navigation bar background image*/
newPhoto.src='imgs/design2010/Nav-bar-bkgrnd3.png';

$(document).ready(function() { /*tells the java script to wait until the rest of the page is loaded before loading program*/
  $('.nav').superfish({
  delay:400
  });
  //$('.nav li:has(ul)').find('a:first').addClass('sub'); commented this line out as don't want arrows on top nav links
  $('.nav ul li:has(ul)').find('a:first').removeClass('sub').addClass('subsub');
  });


