$(document).ready(function(){
						   
	// Fade In
	$('#homeimage, #header h1, #header ul, #social li').css({'display' : 'none'}).fadeIn(1500);	

	// Hover
	$("#header h1, #social li, #footer .video img").hover(function(){
		$(this).fadeTo("fast", 0.5); // hover
	},function(){
		$(this).fadeTo("fast", 1.0); // mouseout
	});
	
 });