/*!
 * jQuery Fade Function
 * http://jquery.com/
 *
 * Copyright 2011, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
*/

$(document).ready(function(){
 
	$('#fade').fadeIn(1000);
	$('#fade2').fadeIn(1000);
	$('#fade3').fadeIn(1000);
	$('#fade4').fadeIn(1000);
 $('#fade5').fadeIn(1000);
});
