If I have a lot of functions on startup do they all have to be under one single:
$(document).ready(function() {
or can I have multiple such
Yes it is possible but you can better use a div #mydiv and use both
$(document).ready(function(){}); //and $("#mydiv").ready(function(){});