/*
 * APPLICATION SPECIFIC JAVASCRIPT
 */


function toggleCheckBoxBySelector(box, class_name )
{
  $$( class_name ).each(function(e){
    e.checked = box.checked;
  }); 
  
}

function copyOrderShipAddress(box)
{
  if (box.checked)
  {
    fields = $w('to address_1 address_2 city state zip');
    fields.each(function(field){
      from = $('order_ship_' + field);
      to =  $('order_bill_' + field);
      to.value = from.getValue();
    })
  }
}

HideFlashMessage = function()
{
  setTimeout("$('flash_message').fade()", 20000)
}
Event.observe(window, 'load', HideFlashMessage );


























