// JavaScript Document

window.addEvent('domready', function() {

	$$('.lnkJue').addEvents({
		'mouseover': function() {
			var id = this.id;
			$('img'+id).setStyle("background", "#f9d134");
		},
		'mouseout': function() {
			var id = this.id;
			$('img'+id).setStyle("background", "white");
		}
	});

	$$('.imgJue').addEvents({
		'mouseover': function() {
			$(this).setStyle("background", "#f9d134");
		},
		'mouseout': function() {
			$(this).setStyle("background", "white");
		}
	});

});
