
      $(document).ready(function(){
 		  var str=location.href.toLowerCase();

        $('.navigation li a').each(function() {
                if (str.indexOf(this.href.toLowerCase()) > -1) {
                        $(this).parent().addClass("highlight"); 
                   }
                 }); 
		

			})
