$(document).ready(function(){
    
    $("strong.title").click(function () {
		$(this).closest("div").find("p").toggle('slow');
    });
	
	$(".side_nav p a").hover(
		function() {
			$(this).closest("p").find("span").show('slow');
		},
		function() {
			$(this).closest("p").find("span").hide('slow');
		}
	);
	
	$(".nav_item").hover(
		function() {
			$(this).closest("div").find("span").show('slow');
		},
		function() {
			$(this).closest("div").find("span").show('slow');
		}
	);
	 
	 $(".nav_item a").hover(
		function() {
			$(this).closest("span").find("em").show('slow');
		},
		function() {
			$(this).closest("span").find("em").hide('slow');
		}
    );
    
    $(function() {
		$("#datepicker").datepicker();
	});


});