$(document).ready(function(){
	$("#back-soon").fadeIn(2000);
	$("#welcome-message").css("opacity", 0).animate({
		top: 0,
		opacity: 0.75
	}, 2500, function(){
		$(this).hover(function(){
			$(this).stop().fadeTo("slow", 1.0);
		}, function(){
			$(this).stop().fadeTo("slow", 0.75);
		});
	});
	$("#contact-me").fadeTo(2500, 0.75).hover(function(){
		$(this).stop().fadeTo("slow", 1.0);
	}, function(){
		$(this).stop().fadeTo("slow", 0.75);
	}).tipsy();
	
	$("a.iframe").fancybox({
		width: 380,
		height: 260,
		padding: 0,
		overlayOpacity: 0.8,
		overlayColor: "#1e1914",
		titleShow: false,
		transitionIn: "elastic",
		transitionOut: "elastic",
		overlayShow: true
	});
	
});
