
  $(window).load(function () {
  $(".header").fadeIn(2000); 
  $("#quick").fadeIn(2000); 
  $(".content").fadeIn(1000); 
  });  

$(document).ready(function(){
$(".drop").click(function(){
    $(".block").slideToggle("slow");
  });
});

/* 
$(document).ready(function(){
	$("#desc_p h2").append('<p></p>')
	$("ul#work li img").mouseover(function(){
		var largeAlt = $(this).attr("alt");
		$("h2 p").html("" + largeAlt +""); return false;
	});
});
 */
 
 $(document).ready(function(){

	$("#work li a").hover(function() {
	  $(this).next(".descript").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).next(".descript").animate({opacity: "hide"}, "fast");
	});

});
