$(document).ready(function()
{
	// Display the testimonials.  Hidden in CSS prior to this to avoid
	// seeing all the testimonials while waiting for the rest of the page
	// to load.
	$('.tests').css('display', 'block');

	$('div.promo div.fading').cycle({
	    speed: 2000,
	    timeout: 5000
	});

	$('ul.tests').cycle({
		fx: 'scrollLeft',
		timeout: 10000
	});

	$('div.ssaso ul').cycle({
	    fx: 'fade'
	});

});

function bill_same_as_shipping()
{
    var checkbox = document.getElementById('bill_same_as_ship');

    if(!checkbox.checked)
    {
        return true;
    }

    document.getElementById('billing_address').value =
        document.getElementById('address').value;
    document.getElementById('billing_address2').value =
        document.getElementById('address2').value;
    document.getElementById('billing_city').value =
        document.getElementById('city').value;
    document.getElementById('billing_zip').value =
        document.getElementById('zip').value;

    var b_state = document.getElementById('billing_state');
    var state = document.getElementById('state');
    b_state.selectedIndex = state.selectedIndex;

    return true;
}

function check_service_level()
{
    if($('#service_level').val() == 0)
    {
        $('#service_level').val('');
    }
}

