// JavaScript Document

$.fn.idle = function(time) {
	var o = $(this);
	o.queue(function() {
		setTimeout(function() { o.dequeue(); }, time);
	});
	return this;
}

// when the DOM is ready...
$(document).ready(function () {
$('#Holiday_Appeal_page-1_block-01_jquery').fadeIn(1500);
$('#Holiday_Appeal_page-1_block-02_jquery').idle(1500).fadeIn(1500);
$('#Holiday_Appeal_page-1_block-03_jquery').idle(3000).fadeIn(1500);

});