// jQuery Code

$(document).ready(function(){

	  // This preloads the images found in style.css
	  $.preloadCssImages();
	  
	  // Drop down Menus (optional)
	  /*
	  $(#nav li).hover(
	  	function() {
	  		$(this).addClass('hover');
	  	}, 
	  	function() {
	  		$(this).removeClass('hover');
	  	}
	  );
	  */

});