$(document).ready(function(){

	$('#header, #content-home, #social-logos img').css({'display' : 'none'}).fadeIn(1000);	

	$("#header h1, #social-logos img, .box .thumbnail, .box .logo").hover(function(){
		$(this).fadeTo("fast", 0.6); // hover
	},function(){
		$(this).fadeTo("fast", 1.0); // mouseout
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
 });
