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

$(function() {
	var images = $("img");
	for(var i=0; i < images.size(); i++) {
	    if(images.eq(i).attr("src").match("_off.")) {
	        $("img").eq(i).hover(function() {
	            $(this).attr('src', $(this).attr("src").replace("_off.", "_on."));
	        }, function() {
	            $(this).attr('src', $(this).attr("src").replace("_on.", "_off."));
	        });
	    }
	}
});

