jQuery(document).ready( function() {



jQuery("#totally_understand").click(function() {
		
		var dataString = jQuery("#understand_custom").serialize();
		//alert (dataString);return false;
		jQuery.ajax({
      type: "POST",
      url: "http://www.elementaryshirts.com/plugins/content/simpleproductsnapshot/virtuemart/understand.php",
      data: dataString,
      success: function() {
	   jQuery.cookie('understood', '1', { expires: 7, path: '/' });
       jQuery('#we-customize-text').fadeOut("slow");
      }
     });
    return false;
	});
});
