jQuery.noConflict();jQuery(document).ready(function($){	// この中ではもう、$はprototype.jsの動作としては使えません       $("img.wink").hover(function(){               $(this).css("opacity", "0.2");               $(this).css("filter", "alpha(opacity=20)");               $(this).fadeTo("slow", 1.0);       });});
