function paymentToggle(){
	
	$('.tab_wrapper > div').hide();
	$('.tab_wrapper input').attr('disabled', 'disabled');
	
    if ($('#authnet_method_cc').attr('checked')){
        $('.cc_method').show('slow');
        $('.cc_method input').removeAttr('disabled');
    } else if ($('#authnet_method_echeck').attr('checked')){
        $('.echeck_method').show('slow');
        $('.echeck_method input').removeAttr('disabled');
	} 
	
}

$(document).ready(function(){

    $("a[rel^='prettyPhoto']").prettyPhoto({
    	overlay_gallery: false,
    	social_tools: '',
    	theme: 'facebook'
    });

    $("#tabs").tabs();

    $('.slide_toggle').click(function(){
        $(this).siblings('div').toggle( 'blind');
    })
    
    paymentToggle();
    
});
