$(function() {
	$('#cycle').cycle({
        fx:      'fade',
        timeout:  3000,
		speed: 3000,
        prev:    '#gallery_left',
        next:    '#gallery_right'
	});	
	
	

    $('#same').click(function() {
        if ($(this).is(":checked")) {
            $('#shipping_fields input', ':visible', document.body).each(function(i) {
                $(this).val($("#billing_fields input").eq(i).val());
            });
            var billTo_state = $("#billTo_state").val();
            $('#shipTo_state option[value=' + billTo_state + ']').attr('selected', 'selected');
        }
        else {
            $('#shipping_fields input', ':visible', document.body).each(function(i) {
                $(this).val($(this)[0].defaultValue);
            });
            $('#shipTo_state option[value="AL"]').attr('selected', 'selected');
        }

    });
	
	
	
	
	
	
});
