// JavaScript Document
$(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('#nav a[@href$="' + path + '"]').attr('class', 'selected');
	 $('#ftr a[@href$="' + path + '"]').attr('class', 'selected');
	 $('#tlinks a[@href$="' + path + '"]').attr('class', 'selected');
});
