The date input I have is for e.g.
var startDate = "January 16, 2013"
From older posts I tried to dig into, I know that I might need to use date.js from http://www.javascripttoolbox.com/lib/date/documentation.php
So I had an extra line in my html to fire it up
<script src="http://prestigeswimming.com/wp-content/plugins/cred-frontend-editor/date.js" type="text/javascript"></script>
<script type="text/javascript">
var startDate = "January 16, 2013"
alert(startDate.getMonthName());
</script>
Am I supposed to do this to get an alert box saying "January"?