jQuery(document).ready(function() {
	jQuery.preloadCssImages();
    jQuery("li", "#nav").hover(
      function () {
        jQuery(".subnav", this).slideDown(200);
      },
      function () {
        jQuery(".subnav", this).slideUp(200);
      }
    );
	
 });
