// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function toggle_shipping() {

    if( $('billing_same_as_shipping').checked  ) {
        $('billing_same_as_shipping').checked = false;
        Element.show('billing_details')
    }
    else {
        $('billing_same_as_shipping').checked = true;        
        Element.hide('billing_details')
    }
    
}