window.addEvent("domready",function() {
	$ES("#jobs_listing a, #job_apply").each(function(item) {
		item.setOpacity(0.7);
		
		item.fx = new Fx.Styles(item, {duration:250, wait:false});
		
		item.addEvent("mouseenter",function () {
			this.fx.start({
						'opacity': [0.7,1]
					});		
		});
		item.addEvent("mouseleave",function () {
			this.fx.start({
						'opacity': [1,0.7]
					});
		});
	});
});