Datepicker Issue

Datepicker Issue

I recently started playing with datepicker and the multi-month display.
Yesterday it was displaying just fine, but today, without any changes to my code the months and days of the week are displaying in either chinese or japanese characters.

Here's my jQuery link code (in my header):

  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js" type="text/javascript"></script>
    <script src="http://jquery-ui.googlecode.com/svn/tags/latest/external/jquery.bgiframe-2.1.1.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/i18n/jquery-ui-i18n.min.js" type="text/javascript"></script>






Here's the code I'm using to init the datepicker:

  1.     $(function() {
            $("#datepicker").datepicker({
                numberOfMonths: 3,
                showOn: 'button',
                buttonImage: 'images/prof/calendar.png',
                buttonImageOnly: true,
                dateFormat: 'm/d/yy'
            });
        });