$(function() {


    // Initiate imageslide...
    if ($('.imageSlide').size() > 0) {
        $('.imageSlide:first').nextAll().hide();
        var images = $('.imageSlide');
        var currentImage = 0;
        var last = images.size() - 1;
        var interval = setInterval(function() {
            images.eq(currentImage).fadeOut(2000);
            if (currentImage == last)
                currentImage = 0
            else
                currentImage++;

            images.eq(currentImage).fadeIn(2000);
        }, 5000);
    }

    $('#customerLoginBtn').toggle(function() {
        $('#customerLogin').stop().animate({ right: '0px' }, function() {
            if ($("#userid").val().length > 0) {
                $("#pwdclient").focus();
            } else {
            $("#userid").focus();
            }
        });
        return false;
    }, function() {
        $('#customerLogin').stop().animate({ right: '-204px' });
    });


});
