window.addEvent('domready', function() {
	var originalPuffBgColor = '#E6E6E0';
	var hoverPuffBgColor = "#D6D6D0"
	
	$$('.link').addEvents({
	    'mouseover': function(){
			//originalPuffBgColor = this.getStyle('background-color'); 
			this.setStyle('background-color',hoverPuffBgColor);
			this.setStyle('cursor','pointer');
		},
		'mouseleave': function(){
			this.setStyle('background-color',originalPuffBgColor);
		},
		'click': function(){
			window.location=this.get('alt');
		}
	});
});
