{{ ------------BEGIN THEME SETTINGS AND CONTROLS------------ }}
{% assign: Product_Options_Text = "Choose an Option" %}
{% assign: Add_to_Cart_Text = "Add to Cart" %}
{% assign: Product_Options_Type = 'Radio Buttons' %} {{ Options: 'Select' or 'Radio Buttons' }}
{{ --RELATED PRODUCTS AREA -- }}
{% assign: Related_Products_Text = "RATS ALSO BOUGHT" %}
{% assign: Related_Products_Per_Row = 4 %} {{ Options: 2 to 5 }}
{{ ------------END THEME SETTINGS AND CONTROLS------------ }}
{{ product.name }}
{% if product.max_price != product.default_price and product.on_sale %}{{ product.max_price | money_with_sign }}{% endif %}{{ product.price | money_with_sign }}
{% if product.description != blank %}
Coming Soon
{% assign currentProduct = product.id %}
{% assign counter = 0 %}
{% for category in product.categories limit:1 %}
{{ Related_Products_Text }}
{% endfor %}{{ -----END RELATED PRODUCTS SECTION---- }}
(function($) {
$(document).ready(function(){
$(".thumbnail img").click(function(){
$(".featured img").attr('src',$(this).attr('src'));
});
$(".thumbnail a").click(function(){
$(".featured a").attr('href',$(this).attr('href'));
});
$(".featured a").colorbox();
if($.trim($(".related_products").html())=='') {
$('#related_products').remove();
}
$('#product-desc').removeClass('hide');
});
})(jQuery);