﻿function menuAction(direction,what)
{
	switch(direction)
	{
		case 'click':
		window.location = what.getAttribute('href');
		break;
	}
}