Getting data from a SQL Server DB and accessing it in Jquery Library (not code on default aspx)

Getting data from a SQL Server DB and accessing it in Jquery Library (not code on default aspx)

Hello,
 
I'm quite new to jquery and I was wondering how to do the following:
 
Just to give an idea, what I'm trying to achieve is getting a list of holiday dates from a Database and disable them  in a jquery datepicker.
 
1 - Need to get data from SQL Server DB (this can be done Server Side one time). I already have the Stored Procedure to return the data and its basically 2 columns, 1st column INT , 2nd column STRING.
 
2 - My real problem now is I want to pass this data to a jquery file that is inside the WebApp but not on the page directly (so I can't access the DB object from this file). I somehow need to pass this data , possibly as an array to jquery so I can pass the dates to the datepicker execution.
 
Is there an easy way of doing this?
 
Thanks