﻿function initCustomerWidget() {
    if(hasCSS()) {
        $('#customer-widget .content').append('<a href="#" id="customer-prev"><img src="/media/button-prev.png" alt="Vorige" /></a><a href="#" id="customer-next"><img src="/media/button-next.png" alt="Volgende" /></a>');
        initHomeCustomers();
    }
}

function hasCSS() {
    $('body').append('<div id="cssTest"></div>')
    $('#cssTest').css({ width: '1px' })
    var cssBoolean = ($('#cssTest').width() != 1) ? false : true
    $('#cssTest').remove()
    return cssBoolean;
}

function initHomeCustomers() {
    if ($('#customers ul li').length < 1) {
        return false;
    }
    var movepx = 145;
    var leng = $('#customers ul li').length;
    leng = (leng * movepx) - movepx;
    $('#customer-next').click(function() {
        toggleTimeout = clearTimeout(toggleTimeout);
        HomeCustomerMoveNext(leng);
        return false;
    });
    $('#customer-prev').click(function() {
        toggleTimeout = clearTimeout(toggleTimeout);
        HomeCustomerMovePrev(leng);
        return false;
    });
}

$().ready(function() {
    initCustomerWidget();
});