$(document).ready(function(){
	
	// flags hover highlight effect:
	$('.flags img, .social_buttons li').css('opacity', '0.5');
	$('.flags img, .social_buttons li').hover(
		function() {
			$(this).css('opacity', '1');
		},
		function() {
			$(this).css('opacity', '0.5');
		}
	);
	
	$('#sidebar ul li ul li:last-child').css('border-bottom', 'none');
	
	$('.children li:last-child.comment').css({
		'paddingBottom': '20px'
	});
	
	$('.children li:last-child.comment .comment_foot').css({
		'bottom': '35px'
	});
	
});

