// JavaScript Document

		$(function(){
		   var path = location.pathname;
		  // alert(path);
		   if ( path )
			 $('#navigation a[href$="' + path + '"]').attr('class', 'current');
		 });

