$(document).ready(function() {
	$(window).load(function() {
		$('.site-wrapper').animate({opacity:1}, 200);
	});
	
	$('.social-sam').hover(function() {
		$('.social .info').html('Follow Sam on Twitter');
	}, function() {
		$('.social .info').html('');
	});
	
	$('.social-robert').hover(function() {
		$('.social .info').html('Follow Robert on Twitter');
	}, function() {
		$('.social .info').html('');
	});
	
	$('.social-facebook').hover(function() {
		$('.social .info').html('Find us on Facebook');
	}, function() {
		$('.social .info').html('');;
	});
});
