$(document).ready(function() {
	var path = window.location.pathname;
	var fileName = path.substring(path.lastIndexOf('/') + 1).toLowerCase();
	var menuName = '';
	
	// Set the current page as the current menu item
	if (fileName != '') {
		menuName = '#menu_' + fileName.replace(/.php/, "");
	} else {
		menuName = '#menu_index';
	};
	
	$(menuName).addClass('current');
	
	
	
});
