function clearText(thefield) {
    if (thefield.defaultValue == thefield.value)
        thefield.value = ""
}


//Tooltip Agenda
function pageLoad() {
    $(".calAgenda a[title]").tooltip(
    { position: 'button center', tip: '#caltooltip', offset: [0, 82]
    });
};

$(function() {
    $("ul.tabs").tabs("div.panes > div");
});

$(document).ready(function() {
    $("a[rel]").overlay({ expose: '#000' });
});
