$(document).ready(function () {
    $('.photo_preview:not(.no_photo)').photopop();
    $('#go_back_1').click(function () {
       window.history.go(-1);
       return false; 
    });
    $('#go_back_3').click(function () {
       window.history.go(-3);
       return false; 
    });
    
    $("input[type=text], input[type=password]").addClass('text');
    
    $("#filter-results").click(function () {
        $(this).hide();
        $("#filter_form").slideDown();
    });
    
    $("input#earliest_move_date").after('<span class="ui-icon ui-icon-calendar"></span>').datepicker().next('.ui-icon').click(function () {
        $("input#earliest_move_date").focus();
    });
    
    $(".message.main .headers").animate({'background-color': '#f7ff77'}, 700, function () {
        $(this).animate({'background-color': '#eeeeef'}, 1500);
    });
});
