$('.webtrack').css('cursor', 'pointer');
$('.webtrack').mouseover(function () {
    $(this).find('.small').hide();
    $(this).find('.big').show();
});
$('.webtrack').mouseout(function () {
    $(this).find('.big').hide();
    $(this).find('.small').show();
});

