$(function()
{
    $('a[confirm]').click(function(){return confirm($(this).attr('confirm'));});
//    $('.datepicker').datepicker({dateFormat: 'mm/dd/yy'});
//    $("a.detailsToolTip").tooltip({
//        tip : '#detailsToolTip',
//        events : {
//            def: 'click, blur'
//        }
//    }).click(function(){return false});

    $('a.detailsToolTip').click(function()
    {
            $('#detailsToolTip')
                    .css({top: $(this).offset().top - 10, left: $(this).offset().left - 50}).show()
                    .find('span.content').html($(this).attr('title')).end()
                    .find('a.close').click(function(){$('#detailsToolTip').hide(); return false});
            return false;
    });


    $('a.lightbox').lightBox();
});
