// JavaScript Document
$(document).ready(function(){
	
	// roll logo
	window.setTimeout(function() {
		$(".logo").animate({"bottom":"70"}, 500);
	}, 500);
	
	// background change
	window.setTimeout(function() {
		$("body").animate({backgroundColor:"#00CCFF"}, "slow");
	}, 500);
	
	// roll email
	window.setTimeout(function() {
		$(".text").css({"display": "block"});
		$(".text").animate({"margin-top":"0"}, 300);
	}, 1000);

	$("#change_picture").hover(function(){
		$(this).attr("src", "images/text_email_underline.png");
	},function(){
		$(this).attr("src", "images/text_email.png");
	});
	
});

