﻿$(document).ready(function () {
    $('#features').cycle({ fx: 'scrollLeft' });

    $('#try').toggle(
        function () {
            $('#features').hide();
            $('#demo').show();
            $(this).html('Back to Features');
        }, function () {
            $('#features').show();
            $('#demo').hide();
            $(this).html('Try It Out');
        }
    );
});
