var Stiprules = {
'.stips a' : function(el){
	el.onmouseover = function(){
		stipid = el.id.substr(5)
		if(document.getElementById('stipImg'))
		document.getElementById('stipImg').style.background = "url('images/stips/stip"+stipid+".gif')"
	},
	el.onmouseout = function(){
		if(document.getElementById('stipImg'))
		document.getElementById('stipImg').style.background = 'none';
	}
	}
};


Behaviour.register(Stiprules);

