$(document).ready(function(){
    /*$('.comment-count').toggle(function(){
    	$(this).parent().next('.comments').fadeIn('slow');
    	}, function () {
    	$(this).parent().next('.comments').fadeOut('slow');	
    	}
    );*/
    $('.comments-hide').click(function(){
    	$(this).parent().fadeOut('slow');
    });
    $('.show_more').toggle(function(){
    	$(this).children('span').fadeOut('slow');
    	$(this).parent().next().fadeIn('slow');
    	}, function () {
    	$(this).children('span').fadeIn('slow');
    	$(this).parent().next().fadeOut('slow');	
    	}
    );

    $('.checklist label').each(
    	function() {
    		labelId = $(this).children('input').attr('value');
    		$(this).attr('id', labelId);
    	}
    	);
	
    /* Round Corners*/
    $('#nav a').corners();
    $('.box').corners();
    
});