// JavaScript Document

$(document).ready(function(){

	$("div").ready(function() {
	  $(this).hide();
	  $(this).animate({opacity: "show"}, "slow");
	}
	
});
