jQuery(function($) {
new Shopify.OptionSelectors('productSelect', {
product: {"id":342047157,"title":"Test Product - (No Photo)","handle":"test-product-no-photo","description":null,"published_at":"2014-07-09T22:27:15+01:00","created_at":"2014-07-09T22:28:24+01:00","vendor":"kiss","type":"Gift Card","tags":[],"price":300,"price_min":300,"price_max":300,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":835700525,"title":"small","option1":"small","option2":null,"option3":null,"sku":null,"requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Test Product - (No Photo) - small","public_title":"small","options":["small"],"price":300,"weight":0,"compare_at_price":null,"inventory_quantity":1,"inventory_management":"shopify","inventory_policy":"deny","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":835700533,"title":"medium","option1":"medium","option2":null,"option3":null,"sku":null,"requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Test Product - (No Photo) - medium","public_title":"medium","options":["medium"],"price":300,"weight":0,"compare_at_price":null,"inventory_quantity":1,"inventory_management":"shopify","inventory_policy":"deny","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":835700537,"title":"large","option1":"large","option2":null,"option3":null,"sku":null,"requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Test Product - (No Photo) - large","public_title":"large","options":["large"],"price":300,"weight":0,"compare_at_price":null,"inventory_quantity":1,"inventory_management":"shopify","inventory_policy":"deny","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":[],"featured_image":null,"options":["Size"],"requires_selling_plan":false,"selling_plan_groups":[],"content":null},
onVariantSelected: selectCallback
});
// Add label if only one product option and it isn't 'Title'. Could be 'Size'.
$('.selector-wrapper:eq(0)').prepend('');
// Hide selectors if we only have 1 variant and its title contains 'Default'.
// Auto-select first available variant on page load. Otherwise the product looks sold out.
$('.single-option-selector:eq(0)').val("small").trigger('change');
});