$(document).ready(function() {
	
	//navigation dropdown
	$('#nav ul li').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); }
	);
	
	//image caption layer fade in
	$('.post-image').hover(function(){
		$(".cover", this).stop().animate({bottom:'0'},{queue:false,duration:400});
	}, function() {
		$(".cover", this).stop().animate({bottom:'-56px'},{queue:false,duration:400});
	});
	
});