var rules = {
	'h1' : function (el)
	{
		el.onclick = function (e)
		{
			document.location = '/';
		},
		el.onmouseover = function (e)
		{
			document.body.style.cursor = 'pointer';
		},
		el.onmouseout = function (e)
		{
			document.body.style.cursor = 'auto';
		}
	},
	'select' : function (el)
	{
		el.onchange = function (e)
		{
			document.forms[0].submit();
		}
	}
}

Behaviour.register(rules);
