miraghyk,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.big.opt, .img:hover{
opacity: .6
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('.big_img').hover(function(){
$(this).css( 'opacity', '0.6' );
}, function(){
$(this).css( 'opacity', '1' );
})
$('.big').hover(function(){
$(this).toggleClass("opt")
})
});
</script>
</head>
<body>
<img src="http://file.mobilmusic.ru/b9/5a/54/1365519-320.jpg" alt="" class="big_img">
<img src="http://file.mobilmusic.ru/b9/5a/54/1365519-320.jpg" alt="" class="big">
<img src="http://file.mobilmusic.ru/b9/5a/54/1365519-320.jpg" alt="" class="img">
</body>
</html>