$(document).ready(function(){
 $(".green #aboutover:first").hide();   
 $(".green").hover(  
 function() {  
$(".green #aboutover:first").fadeIn(250);  
 },  
function() {  
$(".green #aboutover:first").fadeOut(150);  
});  
});  

$(document).ready(function(){
 $(".blue #aboutover:first").hide();   
 $(".blue").hover(  
 function() {  
$(".blue  #aboutover:first").fadeIn(250);  
 },  
function() {  
$(".blue #aboutover:first").fadeOut(150);  
});  
}); 

$(document).ready(function(){
 $(".purple #aboutover:first").hide();   
 $(".purple").hover(  
 function() {  
$(".purple  #aboutover:first").fadeIn(250);  
 },  
function() {  
$(".purple #aboutover:first").fadeOut(150);  
});  
}); 

$(document).ready(function(){
 $(".orange #aboutover:first").hide();   
 $(".orange").hover(  
 function() {  
$(".orange  #aboutover:first").fadeIn(250);  
 },  
function() {  
$(".orange #aboutover:first").fadeOut(150);  
});  
}); 
