$(function () {

    $('.image-fade').hover(function () {
        $(this).stop(true, false).animate({ opacity: 0 }, 550);
    }, function () {
        $(this).stop(true, false).animate({ opacity: 1 }, 800);
    });

    $('.image-fade-fast').hover(function () {
        $(this).stop(true, false).animate({ opacity: 0 }, 250);
    }, function () {
        $(this).stop(true, false).animate({ opacity: 1 }, 300);
    });

    $('a.toggle').click(function () {
        $($(this).attr('href')).toggle(250);
        return false;
    });

//    $('.date').mask("99/99/9999");

});

