/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008/05/26 $
 * $Rev: 5685 $
 */
$(document).ready(
    function () {
   
          $(".headermenu ul li a").filter(function () { 
              var currentURL = window.location.toString().split("/"); 
               return  $(this).attr("href").indexOf(currentURL[currentURL.length - 1])>0;
          }).addClass("selected");
    }
)



