/**
 * myRules
 *
 * @version $Id$
 *
 */
var myrules = 
{
  'a.popup' : function(element)
  {
    element.onclick = function()
    {
      rawPopup(this.href)
      return false;
		}
	},
  
  'a.click' : function(element)
  {
    element.onclick = function()
    {
		}
	},
  
  'a.navitem' : function(element)
  {
    element.onmouseover = function()
    {
      // soundController.play('select');
		}
	}    

};

Behaviour.register(myrules);
