if (window.screen.width <= 425 ){
$('.arrow_r').click(function(e) {
e.preventDefault()
if (($('.license_block img:first-child').attr('src') == ('img/license_0.jpg'))) {
$('.license_block img:first-child').hide().attr('src', 'img/license_1.jpg').fadeIn()
}
$('.arrow_r').click(function(e) {
e.preventDefault()
if (($('.license_block img:first-child').attr('src') == ('img/license_1.jpg'))) {
$('.license_block img:first-child').hide().attr('src', 'img/license_2.jpg').fadeIn()
}
$('.arrow_r').click(function(e) {
e.preventDefault()
if (($('.license_block img:first-child').attr('src') == ('img/license_2.jpg'))) {
$('.license_block img:first-child').hide().attr('src', 'img/license_0.jpg').fadeIn()
}
})
})
})
$('.arrow_l').click(function(e) {
e.preventDefault()
if (($('.license_block > img').attr('src') == ('img/license_0.jpg'))) {
$('.license_block > img').hide().attr('src', 'img/license_2.jpg').fadeIn()
}
$('.arrow_l').click(function(e) {
e.preventDefault()
if (($('.license_block > img').attr('src') == ('img/license_2.jpg'))) {
$('.license_block > img').hide().attr('src', 'img/license_1.jpg').fadeIn()
}
$('.arrow_l').click(function(e) {
e.preventDefault()
if (($('.license_block > img').attr('src') == ('img/license_1.jpg'))) {
$('.license_block > img').hide().attr('src', 'img/license_0.jpg').fadeIn()
}
})
})
})
}