

$(document).ready(function(){
    $('.unauthorized').click(function(){
        alert('You are not authorized to access this.');
        return false;
    });
});
