// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){

	// your functions go here
  
  $(function(){
  $('#section_home').hide().fadeIn(4000);
  })

});


/* optional triggers

$(window).load(function() {

});

$(window).resize(function() {
	
});

*/

