// rollover
$(document).ready(function(){
     $(".link_img").fadeTo("fast", 1.0);
        $(".link_img").hover(function(){
          $(this).fadeTo("fast", 0.7);
            },function(){
        $(this).fadeTo("fast", 1.0);
   });
});

// rollover2
$(function(){
     $('img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!$(this).hasClass('currentPage')) {
             $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});

// slider
$(function(){
     $(".open").click(function(){
      $("#Details").slideToggle("slow");
     });
});

