// jQuery to show and hide zip or postal code input box depending on country selection
					jQuery(document).ready(function(){
						
						 //Hide both zip and postal boxes until country selection
						jQuery("#postalCode").css("display","none");
						jQuery("#zipCode").css("display","none");
						jQuery("#state").css("display","none");
						jQuery("#province").css("display","none");
						
						// Detect if Canada was already selected by the user when the form was submitted
						if (jQuery("#canada").is(":selected"))
						{
							
							// If Canada selected on submit then show province and postal code boxes
							jQuery("#province").css("display","");
							jQuery("#postalCode").css("display","");
							
						}else{
	
						}
							
						// Detect if usa was already selected by the user when the form was submitted
						if (jQuery("#usa").is(":selected"))
						{
							
							// If usa selected on submit then show province and postal code boxes
							jQuery("#state").css("display","");
							jQuery("#zipCode").css("display","");
							
						}else{
	
						}
						
						 // Add onclick handler to checkbox w/id checkme
						jQuery("#country").change(function(){
						
						 // If checked
						 if (jQuery("#canada").is(":selected"))
						 {
								//hide us states options
								jQuery("#state").css("display","none");
								//show can province options
								jQuery("#province").css("display","");
								//alert('you selected canada');
							  //hide zipcode box
								jQuery("#zipCode").css("display","none");
							  //show the postal code box
								jQuery("#postalCode").css("display","");
								
						 }
						 else if (jQuery("#usa").is(":selected"))
						 {
								//hide can province options
								jQuery("#province").css("display","none");
								//show us states options
								jQuery("#state").css("display","");
								//alert('you selected usa');
								//hide postalcode box
								jQuery("#postalCode").css("display","none");
								//show the postal code box
								jQuery("#zipCode").css("display","");
						 }
						 else
						 {     
							  //otherwise, hide both boxes
							  jQuery("#postalCode").css("display","none");
								jQuery("#zipCode").css("display","none");
						 }
					  });
						
						jQuery("#nosell").change(function(){
							if (jQuery(".noSell").is(":selected"))
							{
								//alert('PLEASE NOTE: As a Canadian company we are limited to the states we can ship to. Currently we can\'t ship to your state, we apologise for any inconvienince');
								jQuery("#formContainer").css("display","none");
								jQuery("#noSellMsg").show();
							}
						});
				  
					});
   //jQuery script to control the quote form animation
	/*
   jQuery(document).ready(function(){
       jQuery('#quoteRight').hide();
       jQuery('#quoteMore').show();
       //jQuery('#quoteLeft').css('marginLeft','150px');
       jQuery('#formContainer').css('width','650px');
       jQuery('#quoteMore a').click(function(){
           jQuery('#quoteMore').hide();
           jQuery('#formContainer').animate({width: '850px'}, 300);
           jQuery('#quoteLeft').animate({marginLeft: '0px'}, 300);
           //jQuery('#quoteLeft').fadeOut('slow');
           setTimeout(function(){
             jQuery('#quoteRight').fadeIn('slow');
            }, 500);
           
       });
   });
	*/
