﻿// DO NOT CHANGE THE FOLLOWING LINES: =========================================
var topnavigation = new Array();
var coursecategories = new Array();
// ============================================================================
//
// ============================================================================
// CONFIGURATION OF FRANCHISE WEBSITE
// ============================================================================
// In this file you can define the name of your musicschool, what the topnavigation
// is supposed to show and several other things
//
// Please only change values within the double quotes (") and do not use the double
// quotes within the values. For example:
// var musikschulname = "Musikschule "Music Education Stade""; would not work and
// result in your Topnavigation to be broken.
//
// For your safety, please create a backup of this file before changing.
//
//
// START MODIFYING BELOW ======================================================


// ============================================================================
// Name of your musicschool
var schoolname = "CHARTRES";
// ============================================================================
// Current year, is shown in the footer - Copyright 2010 Musikschule Mustermann
var copyrightyear = "Yamaha Music School";

// ============================================================================
// Name of the Imprint Link in the footer.
var nameimprint = "Mentions légales";
// ============================================================================
// Copyright information in the footer
var allrightsreserved = "All rights reserved.";

// ============================================================================
// Configuration of Top Navigation
// In this section you can define the name of the different sections in the navigation.
//
// If you do not want to show an entry, simply remove all corresponding variables - For
// example, If you do not want to show "Prices" delete the lines starting with topnavigation[3].
//
// If you remove or add links, please make sure that the variables are numbered in sequence.
// This means for example 0,1,2,3,4,5 // 0,1,3,5,7 would, again, result in a broken topnavigation.

topnavigation[0] = new Object();
topnavigation[0]["Name"] = "A notre sujet";
topnavigation[0]["Link"] = "about_us/";

topnavigation[1] = new Object();
topnavigation[1]["Name"] = "Cours";
topnavigation[1]["Link"] = "courses/";

topnavigation[2] = new Object();
topnavigation[2]["Name"] = "Concept";
topnavigation[2]["Link"] = "concept/";

topnavigation[3] = new Object();
topnavigation[3]["Name"] = "Tarifs";
topnavigation[3]["Link"] = "prices/";

topnavigation[4] = new Object();
topnavigation[4]["Name"] = "Professeurs";
topnavigation[4]["Link"] = "teachers/";

topnavigation[5] = new Object();
topnavigation[5]["Name"] = "Actualités";
topnavigation[5]["Link"] = "news/";

//topnavigation[6] = new Object();
//topnavigation[6]["Name"] = "Recrutement";
//topnavigation[6]["Link"] = "jobs/";

topnavigation[6] = new Object();
topnavigation[6]["Name"] = "Nous contacter";
topnavigation[6]["Link"] = "contact/";

// ============================================================================
// Configuration of Course Categories
// In this section you can define the name of the different course categories in the left navigation.
//
// If you do not want to show an entry, simply remove all corresponding variables - For
// example, If you do not want to show "Popular Music Courses" delete the lines starting with coursecategories[0].
//
// If you remove or add links, please make sure that the variables are numbered in sequence.
// This means for example 0,1,2,3,4,5 // 0,1,3,5,7 would, again, result in a broken left navigation.

coursecategories[0] = new Object();
coursecategories[0]["Name"] = "Cours pour les enfants";
coursecategories[0]["Link"] = "ymes/";

coursecategories[1] = new Object();
coursecategories[1]["Name"] = "Cours pour adultes";
coursecategories[1]["Link"] = "pmc/";

coursecategories[2] = new Object();
coursecategories[2]["Name"] = "Autres cours pour enfants";
coursecategories[2]["Link"] = "instrumental/";

//coursecategories[3] = new Object();
//coursecategories[3]["Name"] = "Autres Cours pour enfants";
//coursecategories[3]["Link"] = "others/";


