﻿// JScript File

$(document).ready(function(){
	$('#primaryImage a.main_image').fancybox();
	$('#secondaryImages a.thumbnail').fancybox();
	if (skuIsBrowsable == 'False'){
		$('#productUnavailable').show();
		$('#addToBasketLink').hide();
		$('#qty').hide();
		$('#qtylabel').hide(); 
	} else { 
		$('#productUnavailable').hide();
		$('#addToBasketLink').show();
		$('#qty').show();
		$('#qtylabel').show();
	}
});


function SelectNewSku(productId){
	var featureOptionCount = 0;
	var featureOptionIds = new Array();
	
	$('#features input').each(function(){
		$(this).attr('disabled', true);
		if ($(this).attr('checked') == true){
			featureOptionIds[featureOptionCount] = $(this).val();
			featureOptionCount++;
		}
	});
	
    Products_Detail.GetNewSku(featureOptionIds, productId, ServerSideAdd_CallBack);
}

function ServerSideAdd_CallBack(response) {
   $('#features input').attr('disabled', false);
   
	if (response != null && response.error != null){ return; }
    var sku = response.value;
    
    if (sku != null && typeof(sku) == "object"){
        $('#skuName').html(sku.SkuName);
        $('#skudescription').html(sku.SkuDescription);
	    $('#skuPrice').show();
	    $('#wasPrice').show();
	    $('#stockCode').show().html('Stock Code: ' + sku.StockCode);
        $('#secondaryImages').show();
        $('#primaryImage img').attr('src', sku.Image);
        $('#primaryImage a').attr('href', sku.Image.replace('Regular', 'Enlarged'));
    	
        if (sku.IsUnderOffer) {
            $('#skuPrice').html('Now: ' + sku.Price);
            $('#wasPrice').html('Was: ' + sku.WasPrice);
		    $('#wasPrice').show();
            $('#promotionIcon').show();
            $('#promotionImage img').attr('src', sku.PromotionIconPath).attr('alt', sku.PromotionIconAlt);
        } else {
            $('#skuPrice').html('Price: ' + sku.Price);
            $('#wasPrice').hide();
            $('#promotionIcon').hide();
        }
    	
	    if (sku.IsBrowsable){
		    $('#productUnavailable').hide();
		    $('#addToBasketLink').show();
		    $('#qty').show();
		    $('#qtylabel').show();
		    $('#addToBasketLink').attr('href', 'javascript:addToBasket(' + sku.SkuId + ')');
	    } else { 
		    $('#productUnavailable').show();
		    $('#addToBasketLink').hide();
		    $('#qty').hide();
		    $('#qtylabel').hide(); 
	    }
    } else {
        $('#promotionIcon').hide();
        $('#skuPrice').hide();
        $('#wasPrice').hide();
        $('#stockCode').hide();
        $('#primaryImage').hide();
        $('#secondaryImages').hide();
        $('#skuName').html('Product Not Available');
        $('#skudescription').html('');
        $('#addToBasketLink').hide();
        $('#qty').hide();
        $('#qtylabel').hide();
        $('#productUnavailableImage').hide();
    }
}