jQuery(function(){
	jQuery("img.wink").mouseover(function(){
		jQuery(this).css("opacity","0.2");
		jQuery(this).css("filter","alpha(opacity=20)");
		jQuery(this).fadeTo("slow","1.0");
	});
});

