$(document).ready(function() {
    
    /* History */
    
    $('#mmpr-history').jScrollHorizontalPane({
        animateInterval: 50,
        arrowSize: 183,
        dragMinWidth: 101,
        dragMaxWidth: 101,
        resize: false,
        scrollbarHeight: 28,
        showArrows: true
    });
    $('.mmpr-historical-periods a:contains("Prev")').each(function() {
        $(this).click(function() {
            var next_pos = $('.mmpr-historical-periods a:contains("Prev")').index(this) - 1;
            if (next_pos < 0) next_pos = $('.mmpr-historical-periods a:contains("Prev")').length - 1;
            $('#mmpr-history')[0].scrollTo('li:eq(' + next_pos + ')');
            return false;
        });
    });
    $('.mmpr-historical-periods a:contains("Next")').each(function() {
        $(this).click(function() {
            var next_pos = $('.mmpr-historical-periods a:contains("Next")').index(this) + 1;
            if (next_pos == $('.mmpr-historical-periods a:contains("Next")').length) next_pos = 0;
            $('#mmpr-history')[0].scrollTo('li:eq(' + next_pos + ')');
            return false;
        });
    });
	$('#mmpr-history-wrapper img').lazyload({
		container: $('#mmpr-history-wrapper')
	});

});
