﻿/* ////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) IT Pro Solutions BVBA 2010
//
// This material contains unpublished, copyrighted work, which includes
// confidential and proprietary information of IT Pro Solutions BVBA,
// Dijk 21/1, BE-2861 OLV-Waver, info@itprosolutions.be.
//
// All rights reserved. No copy of any part of this document is permitted
// without explicit written authorization from IT Pro Solutions BVBA.
//
// $Revision: $
// Last modified by $Author: $ on $Date: $
//
// ///////////////////////////////////////////////////////////////////////// */

$(document).ready(function() {

    // Adding classes to the TargetMenu
    var targetMenu = {
        elements: $('.TargetMenu li'),
        classes: ['Companies', 'Groups', 'Kids', 'Shools'],
        addClasses: function() {
            for (var i = 0; i < this.elements.length; i++) {
                $(this.elements[i]).addClass(this.classes[i]);
            }
        }
    };
    targetMenu.addClasses();
});