//var cal_ul = Array();

$(function() {
    $('#leftcol a.day-link').mouseover(function() {
        $('div.day-tip', this.parentNode).show();
    }).mouseout(function() {
        $('div.day-tip', this.parentNode).hide();
    });
    //inset_labels('#alertform #id_alert-email');
});


function inset_labels(field_selector) {
    $(document).ready(function() {
        fields = $(field_selector);
        for (i=0; i<fields.length; i++){
            if (fields[i].value!='') {
                $('label[@for=' + fields[i].id + ']').hide();
            }
        }
    });
    $(field_selector).focus(function() {
        $('label[@for=' + this.id + ']').hide();
    });
    $(field_selector).blur(function() {
        if (this.value=='') {
            $('label[@for=' + this.id + ']').show();
        }
    });
}

