jQuery(document).ready(function(){
	$('.side-nav ul li a.has-children:not(.active)').mouseenter(function() {
		$(this).next('ul').show('slow');
		return false;
	});

	// Social Sharing
	$("#sharing li").css({
		opacity: 0.5
	});

	$("#sharing li").hover(function() {
		$(this).stop().animate({
			opacity: 1
		}, 100);
	},function() {
		$(this).stop().animate({
			opacity: 0.5
			}, 500);
		});
});
