// JavaScript Document

$(document).ready(function(){
	now= new Date();
	$("div #currDate").append(''+now+'');
	
	$("#dropdown").hide();
	$("#dropdown").animate({
		opacity:0.5
	});


	$("a:contains('About Me')").click(function() {
		$("#dropdown").show("slow");
		});

	$("#dropdown").mouseout(function(){
		$(this).hide('slow');
		});
});

