var lmi_about = {
	init: function() {
	    var speeds          = new Array(3000, 2000, 3000, 2000, 3000, 2000, 3000, 3000, 2000, 3000, 2000);
	    var timeouts        = new Array(3500, 3000, 2500, 3500, 3000, 3500, 3000, 2500, 3500, 2500, 3500);


        // 9 mini slideshows
        for (var i = 10; i < 55; i++) {
            // start slideshow
            $('#slideshow_'+i).cycle({
                sync: 1,
                fx: 'fade',
                speed: speeds[i],
                timeout: timeouts[i]
            });
        }
    }
}

jQuery(document).ready(function() {
	lmi_about.init();
});

var employees = [];

function register_employee(employee_id) {
    employees.push(employee_id);
}


function activate_employee_slideshow(employee_id) {
    $('#main_slideshow').fadeOut(500);
    $('#main_about_content').fadeOut(500);
    $.each(employees, function(i, n) {
        $('#employee_slideshow_'+n).fadeOut(500);
        $('#employee_bio_'+n).fadeOut(500);
    });
    $('#employee_slideshow_'+employee_id).fadeIn(500);
    $('#employee_bio_'+employee_id).fadeIn(500);
}

function about_return(employee_id) {
    $('#employee_slideshow_'+employee_id).fadeOut(500);
    $('#employee_bio_'+employee_id).fadeOut(500);
    $('#main_slideshow').fadeIn(500);
    $('#main_about_content').fadeIn(500);
}




