$(document).ready(function() {
    $('#graphic-links').addClass('display-none');
    $('#graphic-control-container').removeClass('display-none');

    $('#symbol').focus().autocomplete({
        source: 'symbol-autocomplete.php',
        minLength: 3
        });

    $('#graphic-control-type, #graphic-control-period, #graphic-control-condition').buttonset();
    $.period = 'max';
    $.type = 'logarithm';
    $.condition = 0;
    $.display_graph = function () {
        $('#graphic-price').attr('src', $('#price-' + $.period + '-' + $.type + '-' + $.condition).attr('href'));
        $('#graphic-volume').attr('src', $('#volume-' + $.period + '-linear-' + $.condition).attr('href'));
    }
});

