// JavaScript Document
$(document).ready(function(){
						   
	//shipping quote
	$(".colorbox").colorbox({width:"50%", height:"50%", iframe:true});	
	//shipping code
	
	
	//print quote
	$('#type').change( function() {
									var str = $('#type').val();
									//alert(str);
									$.post("quote-script.php", { get: "qty", type: str },
																  function(data){
																	$('#qtySel').html(data);
																	$('#quote').html('');
																	//alert("Data Loaded: " + data);
																  }, "html");
								   });

});

function getQuote () { 
									var qty = $('#qty').val();
									var type = $('#type').val();
									//alert(qty);
									$.post("quote-script.php", { get: "quote", type: type, qty: qty },
																  function(data){
																	$('#quote').html(data);
																	//change the link to the shipping quote
																	var wei = $('.weight').text();
																	$('.colorbox').attr({ 
																	  href: "ups/index.php?weight=" + wei
																	});
																	//alert("Data Loaded: " + data);
																  });
				
				
				}
