var myRules = {
	//     // Main menu, level 1, highlight effect
	//     'a.menuMain-level1-no' : function (element) {
	//         element.onmouseover = function () {
	//             Element.addClassName(this, 'menuMain-level1-hover');
	//             this.style.cursor = 'pointer';
	//         },
	//         element.onmouseout = function () {
	//             Element.removeClassName(this, 'menuMain-level1-hover');
	//         }
	//     },
	//     // Main menu, level 2, highlight effect
	//     'a.menuMain-level2-no' : function (element) {
	//         element.onmouseover = function () {
	//             Element.addClassName(this, 'menuMain-level2-hover');
	//             this.style.cursor = 'pointer';
	//         },
	//         element.onmouseout = function () {
	//             Element.removeClassName(this, 'menuMain-level2-hover');
	//         }
	//     },
	//     // Main menu, clicking die divs
	//     'a.menuIsClickable' : function (element) {
	//         element.onclick = function () {
	//             window.location.href = this.firstChild;
	//         }
	//     },
	//     'li.faq' : function (element) {
	//         // element.onclick = function () {
	//         //             
	//         //         }
	//     },
	//     'a.references' : function (element) {
	//         // element.onclick = function () {
	//         // }
	//     },
	// 'img.language' : function (element) {
	//         element.onmouseover = function () {
	//             element.src = element.src.replace(/_bw.gif/, '.gif');
	//         },
	//         element.onmouseout = function () {
	//             element.src = element.src.replace(/.gif/, '_bw.gif');
	//         }
	//     }
};

Behaviour.register(myRules);

Behaviour.addLoadEvent(
    function () { 
    }
);
