// JavaScript Document
$(document).ready(function(){
	$('#image-a, #image-b, #image-c').hide().slideUp();
						   
		$('#image-a').slideDown();
		$('#image-b').delay(250).slideDown();
		$('#image-c').delay(500).slideDown();
	
	$('#social-links a img').mouseenter(function(){
		$(this).stop().animate({'marginTop':'5px'});
	}).mouseleave(function(){
		$(this).stop().animate({'marginTop':'0px'});
	});
});