	$(function() {
		$('#blogshot').one('click', function() {
		}).toggle(
			function() {
				$(this).animate({height: '495px'});
			}, function() {
				$(this).animate({height: '210px'});
			}
		);
	});
	
	$(document).ready(function() {
			$("li.menu-item-16699").hover(function() {
				$('.sub-menu', this).stop(true, true).slideDown();

				$(this).parent().hover(function() {  
				        }, function(){  
				            $(this).parent().find(".sub-menu").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
				        }); 
			});
	});

