function homeBoxSlow() {
	$('#home-box').hide(); 		  
	$('#home-box').show("slow");	
};

$(document).ready(function() {
	homeBoxSlow();  
});

