jQuery(document).ready(function(){
 
jQuery(".vsig_thumb img").hover(
function() {
	jQuery(this).stop().animate({"opacity": "0.7"}, "fast");
},
function() {
	jQuery(this).stop().animate({"opacity": "1"}, "fast");
});

});

