не могу вызвать функцию, в чем ошибка?
$(document).ready(function(){
function clicklink(link,id,bg){
$(".nav_right_arrow").css({"background":"#fff url('../img/loading1.gif') no-repeat center","background-size":"63%"});
$("#content_block").html("<span></span>");
$.ajax({
url:link,
cache: false,
success: function(html){
$(".nav_right_arrow").css({"background":"url('../img/bar-ios1.svg') no-repeat center 2px #fff","width":"64px","height":"64px","border-radius":"32px","-moz-border-radius":"32px","-webkit-border-radius":"32px","-khtml-border-radius":"32px","-o-border-radius":"32px","-ms-border-radius":"32px","-icab-border-radius":"32px","margin-left":"3px","background-size":"100%"});
$("#content_block").html(html);
}
});
return false;
$(".nav_right_arrow").attr("id", id);
$('.bg').css({"background":bg,"background-attachment":"fixed","background-repeat":"no-repeat","background-position":"top center","-moz-background-size":"cover","-webkit-background-size":"cover","-o-background-size":"cover","-khtml-background-size":"cover","background-size":"cover"});
};
$("#m1").on('click', clicklink("inc/content_home.php","arrow_1","url('../img/home_bg.jpg') no-repeat"););
$("#m2").on('click', clicklink("inc/content_studio.php","arrow_2","url('../img/studio_bg_1.jpg') no-repeat"););
});