// JavaScript Document

// fade everything in on load

$(document).ready(function(){	
	$('#fade').fadeIn(400);
});



