// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){
  //  Initialize Backgound Stretcher	   
$("img.splash-photo").fadeIn(4000);
	$("#main").fadeIn(1000);
	
	$("ul#socials li img").animate({opacity:.8}, 0);
	
	$("ul#socials li img").hover(function (){
		$(this).animate({opacity:1}, 300);
	}, function(){
		$(this).animate({opacity:.8}, 50);
	});
		
});



$(window).load(function() {
	
	
});

$(window).resize(function() {
	
});

