///////////////////////////////////////////////////////////////////////////////////////////////////
// File: topnav.js
// Creator: Monjay Settro, Devbleue Inc.
// Purpose: highlights topnav elements based on window.location pagename
// Copyright (c) 2010, Devbleue Inc. All rights reserved.
///////////////////////////////////////////////////////////////////////////////////////////////////

$('#leftNav li a').each(
    function (i, e) {
        var href = e.href;
        var page = href.split('/');
            page = page[page.length-1];

        var location = window.location.href.toString();
        if (location.match('news_')) {
            location = 'news.html';
        }
        if (location.match('template')) {
            location = 'index.html';
        }
        if (location.match(page)) {
            $('a[href=' + page + ']').addClass('navSelected');
        }
    });

