function wink(){
  	$("img.wink").hover(function(){
    		$(this).css("opacity", "0.2");
    		$(this).css("filter", "alpha(opacity=20)");
    		$(this).fadeTo("fast", 1.0);
	},function(){});
}
