//Slider functionality for home form
$(function() {
    $('#submitButton').hide();
    $('.addressForm').hide();
    $('.startedForm').hide();
    $('#submitLink').show();
    $('.CancelButton_Two').hide();

    $('.addressOpener').click(function() {
        $('.addressForm').show('slow');
        $('#submitLink').hide();
        $('#submitButton').show();
        $('.addressOpener').hide();
        $('.defaultContent').hide();
        $('.openContent').show();
        setTimeout("$('.CancelButton_Two').show();", 500);
    });
    $('.CancelButton_Two').click(function() {
        $('.addressForm').hide('slow');
        $('#submitLink').show();
        $('#submitButton').hide();
        $('.addressOpener').show();
        $('.defaultContent').show();
        $('.openContent').hide();
    });
    $('.startedOpener').click(function() {
        $('.startedOpener').hide();
        $('.startedForm').show('slow');
        $('.defaultStartContent').hide();
        $('.openStartContent').show();
    });
    $('.CancelButton').click(function() {
        $('.startedOpener').show();
        $('.startedForm').hide('slow');
        $('.defaultStartContent').show();
        $('.openStartContent').hide();
    });
});




