$(document).ready(function(){
  $('input[name=f_PaymentMethod]').click(function(){
    if ($('#rbPayment6').is(':checked')) {
	  $('input[name=f_DeliveryMethod]').attr('disabled', true);
	  $('#rbDelivery3').attr('disabled', false).attr('checked', true);
	}
	else {
	  $('input[name=f_DeliveryMethod]').attr('disabled', false);
	}
  });

$("a[rel='drug_photo']").colorbox({photo:true});

});
