// JavaScript Document
//cleartype: true; cleartypeNoBg: true;
$(document).ready(function(){
$(".img1").hover(
function() {
$(this).stop().animate({"opacity": "0"},  "slow");
},
function() {
$(this).stop().animate({"opacity": "1"},  "slow");
});

});
