$(function () {
    $('#replyButton').click(function () {
        var joboffer_id = $(this).attr('rel');
        $.ajax({
            type: 'GET',
            async: false,
            url: Router('joblife/jobs/joboffer-reply-click/id/' + joboffer_id + '/'),
            success: function () {
                //
            }
        });
        if ($(this).is('.newwin')) {
            //window.open($(this).attr('href')); return false;
        } else {
            Router.route($(this).attr('href'));
        }
    });
});

