$(function() {
	$("#container").prepend('<div class="none"><div id="burst"><div></div></div></div>');	   
	$(".list a").append('<span></span>');
	$("#samples img").hover(function() {	
		$(this).stop().animate({ 
			opacity: "1" 
		}, 1);
	} , function() {
		$(this).stop().animate({
			opacity: ".3" 
		},  700);
	});
	$(".list a").hover(function() {	
		$(this).stop().animate({ 
			backgroundPosition: "0" 
		}, 1);
	} , function() {
		$(this).stop().animate({
			backgroundPosition: "+220" 
		},  700);
	});
	$("#container").hover(function() {	
		$("#burst div").stop().animate({ 
			opacity: "1" 
		}, 250);
	} , function() {
		$("#burst div").stop().animate({
			opacity: ".0" 
		},  500);
	});
	$(".list a").hover(function() {	
		$(this).find("span").stop().animate({ 
			opacity: "1" 
		}, 500);
	} , function() {
		$(this).find("span").stop().animate({ 
			opacity: ".0" 
		},  500);
	});
	$("#resumeOf").stop().animate({ 
		paddingLeft: "19" 
	}, 500, function more1(){
		$("#books").stop().animate({ 
			marginTop: "27" 
		}, 200, function more2(){
			$("#sideshow").stop().animate({
				height: "1190px" 
			},  500)
			.animate({ 
				opacity: "0" 
			}, 500, function more3(){
				$("#rezshow").stop().animate({ 
					opacity: "0" 
				}, 500, function more4(){
					document.getElementById('rezshow').style.display = "none"
					document.getElementById('sideshow').style.display = "none"
					$("#burst").stop().animate({ 
						opacity: "1" 
					}, 500);	
				});			
			});
		});	
	});	
});