$(document).ready(function(){
	$(".img_one").hover(function() {
		$(this).attr("src","images/seed1_full.png"); 
			}, function() {
		$(this).attr("src","images/seed1_fade.png");
		
	});
	$(".img_two").hover(function() {
		$(this).attr("src","images/seed2_full.png"); 
			}, function() {
		$(this).attr("src","images/seed2_fade.png");
		
	});
	$(".img_three").hover(function() {
		$(this).attr("src","images/seed3_full.png"); 
			}, function() {
		$(this).attr("src","images/seed3_fade.png");
		
	});
	$(".img_four").hover(function() {
		$(this).attr("src","images/seed4_full.png"); 
			}, function() {
		$(this).attr("src","images/seed4_fade.png");
		
	});
});
