remove about us and FAQ links in menus
[namibia] / public / templates / page / home.js
1 var template_home = function( static )
2 {
3         this.static = static;
4         this.elements = {};
5         this.construct = function()
6         {
7                 $('body').removeClass("black");
8                 
9                 var location = '#/';
10                 $('.select_page').removeClass('select_page');
11                 $('a[href="/' + location +'"]').closest('li').addClass('select_page');
12                 
13         };
14         this.destruct = function() {};
15 };