jQuery(function() {
	var images = jQuery("img");
	for(var i=0; i < images.size(); i++) {
		if(images.eq(i).attr("src").match("_on.")) {
			jQuery("img").eq(i).hover(function() {
				jQuery(this).css('opacity', '0.6');
			}, function() {
				jQuery(this).css('opacity', '1');
			});
		}
	}
});
