// JavaScript Document

  $(document).ready(function(){
 		
	$("#showMsg").css("display", "none");	
	
	// Switch Shipping Insurance Prices
    $("#shipInsOptions").change(function () {
          var str = "";
          $("#shipInsOptions option:selected").each(function () {
                str += $(this).val() + " ";
              });
          $("#shipInsCost").text(str);
		  $("#paypalValue").val(str);
		  
		if ($("#shipInsOptions").val() == "email") {
				$("#showCost").css("display", "none");
				$("#showMsg").css("display", "block");
			}		  
			else
			{
				$("#showCost").css("display", "block");
				$("#showMsg").css("display", "none");				
			}
        })

	
        .change();


	



  });// end document.ready