var homepageRules = {
	'#offers li' : function(el) {
		el.onclick = function() {
			var link = this.getElementsByTagName('a')[0].getAttribute('href');
			window.location = link;
		};
		el.onmouseover = function() {
			this.className = 'hover';
		};
		el.onmouseout = function(){
			this.className = '';
		};
	}
};

Behaviour.register(homepageRules);