$(document).ready(function(){
$(".ab_images img").fadeTo("slow", 0.9);
$(".ab_images img").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.9);
});
});
