// JavaScript Document
j(window).load(function(){
	
	j("#category_container").fadeIn(600);
	j(".wp-pagenavi").fadeIn(600);
	
});


j(function () {
	
	j("<span>//</span>").appendTo("#subnavigation ul li");
	j("#subnavigation ul li:last-child").find('span').hide();
				
	/* category comment captions */

	j(".category_thumbnail").hover(function () {
		j(this).find(".category_caption").animate({bottom: '0' }, {duration:200, easing: 'easeOutQuint'});
	}, function () {
	  	j(this).find(".category_caption").animate({bottom: '-25px' }, {duration:200, easing: 'easeOutQuint'});
    });	

	/* next post */
	
	j(".subpage_next_post a").hover(function () {
		j(this).animate({opacity: 1 }, {duration:200, easing: 'easeOutQuint'});
	}, function () { 
		j(this).animate({opacity: 0.6 }, {duration:200, easing: 'easeOutQuint'});
    });	
	
	/* prev post */
	
	j(".subpage_prev_post a").hover(function () {
		j(this).animate({opacity: 1 }, {duration:200, easing: 'easeOutQuint'});
	}, function () { 
		j(this).animate({opacity: 0.6 }, {duration:200, easing: 'easeOutQuint'});
    });	
	
			
});
