
  /* Modified by Alex Spooner, 2009-06-22 10:18:02 EST */
  
	$(document).ready(function(){

		$("#what").click(function(event){
			event.preventDefault();
			$(this).blur();
		});
	
		$("#what").mouseover(function(event){
			event.preventDefault();
			$("#blueinfo").slideDown("fast");
		});
	
		$("#what").mouseout(function(event){
			event.preventDefault();
			$("#blueinfo").slideUp("fast");
		});

    $("#SameAsBilling").click(function(event){
      event.preventDefault();
      $("#iCustShipFirstName").val($("#iCustBillFirstName").val());
      $("#iCustShipLastName").val($("#iCustBillLastName").val());
      $("#iCustShipCompany").val($("#iCustBillCompany").val());
      $("#iCustShipAddr1").val($("#iCustBillAddr1").val());
      $("#iCustShipAddr2").val($("#iCustBillAddr2").val());
      $("#iCustShipCity").val($("#iCustBillCity").val());
      $("#iCustShipState").val($("#iCustBillState").val());
      $("#iCustShipZip").val($("#iCustBillZip").val());
      $("#iCustShipPhone").val($("#iCustBillPhone").val());
    });
	
	});
  