
$(document).ready(function() {

    $('#slider').slider({effectType:'fade'});

    $('.aboBonusImageLink').click(function() {
        if (!$(this).hasClass('aboBonusImageActive')) {
            $('.aboBonusImageActive').removeClass('aboBonusImageActive');
            $(this).addClass('aboBonusImageActive');
            $('#aboBonusImage img').attr('src', $(this).attr('href'));
        }
        return false;
    });
    $('#aboBonusVariations').variations();

    var minHeight = 0;
    $('ul.products li').each(function() {
        if ($(this).height() > minHeight) {
            minHeight = $(this).height();
        }
    });
    if (minHeight > 0) {
        $('ul.products li').each(function() {
            $(this).css({
                height: minHeight + 'px',
                display: 'block',
                float: 'left'
            });
        });
    }
    
    $('#checkout_confirmation').submit(function() {
        if($('input[name=conditions]').attr('checked')) {
            return true;
        } else {
           $('#errorAGB').css('display','block');    
           return false;
        }
    });
});
