code more reasonable and shorter possible?

code more reasonable and shorter possible?

Hi,

I am working with some mustache templates on my site and so have to do this document ready introduction:

$(document).ready(function(){
templates.defaultViewTemplate = "templates/defaultViewTemplate.html";
templates.chart_1_AnimationTemplate = "templates/Chart_1/Studio_p1.html";
templates.chart_1_FullscreenTemplate = "templates/Chart_1/Fullscreen_p1.html";
templates.chart_2_AnimationTemplate = "templates/Chart_2/Studio_p2.html";
templates.chart_2_FullscreenTemplate = "templates/Chart_2/Fullscreen_p2.html";
templates.chart_3_AnimationTemplate = "templates/Chart_3/Studio_p3.html";
templates.chart_3_FullscreenTemplate = "templates/Chart_3/Fullscreen_p3.html";
templates.chart_4_AnimationTemplate = "templates/Chart_4/Studio_p4.html";
templates.chart_4_FullscreenTemplate = "templates/Chart_4/Fullscreen_p4.html";
templates.chart_5_AnimationTemplate = "templates/Chart_5/Studio_p5.html";
templates.chart_5_FullscreenTemplate = "templates/Chart_5/Fullscreen_p5.html";
templates.chart_6_AnimationTemplate = "templates/Chart_6/Studio_p6.html";
templates.chart_6_FullscreenTemplate = "templates/Chart_6/Fullscreen_p6.html";
templates.chart_7_AnimationTemplate = "templates/Chart_7/Studio_p7.html";
templates.chart_7_FullscreenTemplate = "templates/Chart_7/Fullscreen_p7.html";
templates.chart_8_AnimationTemplate = "templates/Chart_8/Studio_p8.html";
templates.chart_8_FullscreenTemplate = "templates/Chart_8/Fullscreen_p8.html";
templates.chart_9_AnimationTemplate = "templates/Chart_9/Studio_p9.html";
templates.chart_9_FullscreenTemplate = "templates/Chart_9/Fullscreen_p9.html";
templates.chart_10_AnimationTemplate = "templates/Chart_10/Studio_p10.html";
templates.chart_10_FullscreenTemplate = "templates/Chart_10/Fullscreen_p10.html";
templates.chart_11_AnimationTemplate = "templates/Chart_11/Studio_p11.html";
templates.chart_11_FullscreenTemplate = "templates/Chart_11/Fullscreen_p11.html";
templates.chart_12_AnimationTemplate = "templates/Chart_12/Studio_p12.html";
templates.chart_12_FullscreenTemplate = "templates/Chart_12/Fullscreen_p12.html";
templates.chart_13_AnimationTemplate = "templates/Chart_13/Studio_p13.html";
templates.chart_13_FullscreenTemplate = "templates/Chart_13/Fullscreen_p13.html";
loadTemplates( loadedCallback );

Is there a way to write this shorter and more professional or would it make the mode less readable in the end?

Thanks for help
Garavani