﻿
Date.firstDayOfWeek = 7;
Date.format = 'mm/dd/yyyy';

$(document).ready(function() {
    $("input[type=text]").focus(function() {
        $(this).addClass("gray");
    });

    $("input[type=text]").blur(function() {
        $(this).removeClass("gray");
    });

    $("textarea").focus(function() {
        $(this).addClass("gray");
    });

    $("textarea").blur(function() {
        $(this).removeClass("gray");
    });

    if (jQuery.browser.msie == true && (jQuery.browser.version == 7 || jQuery.browser.version == 6)) {
        $("table#draftControls").css("margin-top", "-1px");
    }

    $('td.firstGame input').datePicker({ startDate: (new Date()).asString() });
    $('td.dob input').datePicker({ startDate: '01/01/1970', endDate: (new Date()).asString() });

    try {
      var pageTracker = _gat._getTracker("UA-1507482-2");
      pageTracker._trackPageview();
    } catch(err) {}

});