$(document).ready(function() {

$('.image img').fadeTo(1, 0.8);
$('.image img').mouseover(function() {$(this).fadeTo(100, 1);});
$('.image img').mouseout(function() {$(this).fadeTo(300, 0.8);});
//$('.classImageMain').mouseover(function() {$(this).children().addClass($(this).children().attr('id')+'over');});
//$('.classImageMain').mouseout(function() {$(this).children().removeClass($(this).children().attr('id')+'over');});

}); 

