$(document).ready(function() {

    $("a.apply").live('click', function(e) {
        e.preventDefault();

        var tmp = $(this).attr('id').split('_');
        var id = tmp[1];

        $.ajax({
            type:     "POST",
            url:      $(this).attr("title"),
            success:  function(ret){
                $("#frame_wrapper").fadeOut(300);
                $("#frame_wrapper").html(ret);
                $("#frame_wrapper").fadeIn(300);
            }
        });
    });

});
