$(document).ready(function() {
	//set opacity on load (social)
	$('.social_icon').animate({ opacity: 0.5 }, 50);
							   //social_bar_inner
		$('#social_bar').hover(
									 function(){
											  //mouse over function
											  $('#social_bar_inner')
											  .stop(true)
											  .animate({marginLeft: 0});
											  }, 
											  function(){
												  //mouse out function
												  $('#social_bar_inner')
												  .stop(true)
											  .animate({marginLeft: 29});
											  }
									);
	//$('.social_icon').stop().animate({ opacity: 1.0 }, 50);
			$('.social_icon').hover(
									 function(){
											  //mouse over function
											  $(this)
											  .stop(true)
											  .animate({ opacity: 1.0 }, 50);
											  }, 
											  function(){
												  //mouse out function
												  $(this)
												  .stop(true)
											  .animate({ opacity: 0.5 }, 50);
											  }
									);
		});
