(function($){

		//cache nav
		var nav = $('#menu');

		//add indicators and hovers to submenu parents
		nav.find('li').each(function() {
			if ($(this).find('ul').length > 0) {

				$('<img src="http://www.secondhandhounds.org/wp-content/themes/sandbox2/img/DownArrow.gif" alt="DownArrow">').appendTo($(this).children(':first'));

				//show subnav on hover
				$(this).mouseenter(function() {
					$(this).find('ul').stop(true, true).slideDown();
				});

				//hide submenus on exit
				$(this).mouseleave(function() {
					$(this).find('ul').stop(true, true).slideUp();
				});
			}
		});
	})(jQuery);
