jQuery(document).ready(function(){

	// Show/hide Exif Info
	$('li#exif, li#note').hover(
		function() {
			$(this).find('.box').fadeIn();
		}, 
		function() {
			$(this).find('.box').delay(500).fadeOut();
		}
	);

	// Show/hide arrow nav on images
	$('.post-nav-prev a, .post-nav-next a').fadeOut();
	$('.post-nav-prev').hover(
		function() { $('.post-nav-prev a').css('background-position',0).fadeIn(); }, 
		function() { $('.post-nav-prev a').fadeOut(); }
	);
	$('.post-nav-next').hover(
		function() { $('.post-nav-next a').css('background-position','460px').fadeIn(); }, 
		function() { $('.post-nav-next a').fadeOut(); }
	);
	$('.post-nav-next.video').hover(
		function() { $('.post-nav-next a').css('background-position','5px').fadeIn(); }, 
		function() { $('.post-nav-next a').fadeOut(); }
	);

})
