$(document).ready(function() {

	var $sidebar   = $("#social-side"),
		$window    = $(window),
		offset     = $sidebar.offset();
	
	$window.scroll(function() {
	
		$sidebar.stop().animate({
			top: $window.scrollTop() + offset.top
		});
		
	});
	
	
	
	
	
	
	
	
	
	
	   $("ul#nav li").hover(function() {
			$(this).find("ul.sub-menu").animate({"top": "33px", "opacity": "show"}, 200, "swing");

			$(this).hover(function() {}, function(){
				$(this).find("ul.sub-menu").stop(true, true).animate({"top": "100px", "opacity": "hide"}, 100);
			});
		});
		
		 $('ul#nav ul li a').hover(

		function() {

			$(this).css('paddingLeft', '10px')
			.stop()
			.animate({'paddingLeft'    : '40px'},
			'fast');
		},

		function() {

			$(this).css('paddingLeft', '40px')
			.stop()
			.animate({'paddingLeft'    : '10px'},
			'fast');
		});
	
	
	

	

  

	
	
});
