$(document).ready(function(){
	
	$('.fade').css({'display' : 'none'}).fadeIn(1500);
	
	$(".social a, .photo-gallery a").hover(function(){
			$(this).fadeTo("fast", 0.5); // hover
		},function(){
			$(this).fadeTo("fast", 1.0); // mouseout
	});
	
	$("a[rel='gallery']").colorbox();

 });
