$(function(){
	$(".roll").hover(
      function () {
        $(this).parent().children(".img").fadeTo("fast",0.33);
      },
      function () {
	  	$(this).parent().children(".img").fadeTo("fast",1.0);
      }
    );
	$(".ro").hover(
      function () {
        $(this).children("IMG").fadeTo("fast",0.);
      },
      function () {
	  	$(this).children("IMG").fadeTo("fast",1.);
      }
    );
});