dce46e80
Alex Savenko
first push project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$(document).ready(function(){
$('.fertilizer-block-img img').width(function(i,val){
$(this).css({marginLeft:-val/2})
});
$('.form-arrows-right-wr').hover(function(){
$(this).css({background:'url("form-img/form-arrows.jpg") -10px -18px no-repeat'})
}, function(){
$(this).css({background:'url("form-img/form-arrows.jpg") -10px 0 no-repeat'})
})
$('.form-arrows-left-wr').hover(function(){
$(this).css({background:'url("form-img/form-arrows.jpg") 0 -18px no-repeat'})
}, function(){
$(this).css({background:'url("form-img/form-arrows.jpg") 0 0 no-repeat'})
})
});
|