// 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 = "Yamaha Music School Wrede";
// ============================================================================
// Current year, is shown in the footer - Copyright 2010 Musikschule Mustermann
var copyrightyear = "2011";

// ============================================================================
// Name of the Imprint Link in the footer.
var nameimprint = "Impressum";
// ============================================================================
// Copyright information in the footer
var allrightsreserved = "Alle Rechte vorbehalten.";

// ============================================================================
// 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"] = "Über Uns";
topnavigation[0]["Link"] = "about_us/";

topnavigation[1] = new Object();
topnavigation[1]["Name"] = "Kurse";
topnavigation[1]["Link"] = "courses/";

topnavigation[2] = new Object();
topnavigation[2]["Name"] = "Konzept";
topnavigation[2]["Link"] = "concept/";

topnavigation[3] = new Object();
topnavigation[3]["Name"] = "Gebühren";
topnavigation[3]["Link"] = "prices/";

topnavigation[4] = new Object();
topnavigation[4]["Name"] = "Lehrkräfte";
topnavigation[4]["Link"] = "teachers/";

topnavigation[5] = new Object();
topnavigation[5]["Name"] = "News";
topnavigation[5]["Link"] = "news/";

topnavigation[6] = new Object();
topnavigation[6]["Name"] = "Stellenangebote";
topnavigation[6]["Link"] = "jobs/";

topnavigation[7] = new Object();
topnavigation[7]["Name"] = "Kontakt";
topnavigation[7]["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"] = "Yamaha Music Education System";
coursecategories[0]["Link"] = "ymes/";

coursecategories[1] = new Object();
coursecategories[1]["Name"] = "Popular Music Courses";
coursecategories[1]["Link"] = "pmc/";

coursecategories[2] = new Object();
coursecategories[2]["Name"] = "Instrumentalkurse";
coursecategories[2]["Link"] = "instrumental/";

coursecategories[3] = new Object();
coursecategories[3]["Name"] = "Frühkindliche Musikalisierung";
coursecategories[3]["Link"] = "early/";

coursecategories[4] = new Object();
coursecategories[4]["Name"] = "Weitere Kurse";
coursecategories[4]["Link"] = "others/";


