﻿
// JScript File

function addBookmark(title,url)
{
      if (window.sidebar)                             // Mozilla Firefox Bookmark
      {
            window.sidebar.addPanel(title, url,"");
      }
      else if (window.external)                             // IE Favorite
      {
            window.external.AddFavorite( url, title);
      }
      else if (window.opera && window.print)          // Opera Hotlist
      {
            return true;
      }
}

function fadeBannerIn() {
    document.getElementById("bannerImage").style.opacity = opacity / 16.6;
    document.getElementById("bannerImage").style.filter = 'alpha(opacity=' + opacity * 16.6 + ')';

    opacity = opacity + 1;

    if (opacity <= 100) {
        setTimeout("fadeBannerIn()", 50);
    }
    else {
        setTimeout("fadeBannerOut()", 50);
    }
}

function pageLoad()
{

}

function getXmlHttpRequestObject() 
{	
	if (window.XMLHttpRequest) 
	{		
		return new XMLHttpRequest();	
	} 
	else if(window.ActiveXObject) 
	{		
		return new ActiveXObject("Microsoft.XMLHTTP");	
	} 
	else 
	{		
		alert('Status: Cound not create XmlHttpRequest Object. Consider upgrading your browser.');	
	}
}

var removeItemReq = getXmlHttpRequestObject();
function removeItem(basketItemId)
{
    if (removeItemReq.readyState == 4 || removeItemReq.readyState == 0) 
	{
	    removeItemReq.open("POST", 'ajax/RemoveItem.aspx', true);	
        removeItemReq.setRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=UTF-8");			
		removeItemReq.onreadystatechange = function() {removeItemResponse(basketItemId)};
				
		var param = "Id=" + basketItemId;
		removeItemReq.send(param);
	
	}
}

function removeItemResponse(basketItemId)
{
    if (removeItemReq.readyState == 4)
	{ 
	    var response = removeItemReq.responseText;
	    
	    window.location = "Basket.aspx";
    }
}


var updateItemReq = getXmlHttpRequestObject();
function updateQuantity(basketItemId, qty, psid) {
    if (updateItemReq.readyState == 4 || updateItemReq.readyState == 0) {
        updateItemReq.open("POST", 'ajax/UpdateQuantity.aspx', true);
        updateItemReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
        updateItemReq.onreadystatechange = function() { updateQuantityResponse(basketItemId) };

        var param = "Id=" + basketItemId + "&qty=" + qty + "&ProductSizeID=" + psid;
        updateItemReq.send(param);

    }
}

function updateQuantityResponse(basketItemId) {
    if (updateItemReq.readyState == 4) {
        var response = updateItemReq.responseText;

        window.location = "Basket.aspx";
    }
}
function switchImage(image)
{
    document.getElementById("productImage").src = "Images/" + image;
}



function gotoURL(URL) 
{
   window.location = URL;
}

startList = function() {

    // code for IE
    if (!document.body.currentStyle) return;
    var subs = document.getElementsByName('submenu');
    for (var i = 0; i < subs.length; i++) {
        var li = subs[i].parentNode;
        if (li && li.lastChild.style) {
            li.onmouseover = function() {
                this.lastChild.style.visibility = 'visible';
            }
            li.onmouseout = function() {
                this.lastChild.style.visibility = 'hidden';
            }
        }
    }
}
window.onload = startList;


function incQty() {
    if (document.getElementById("ProductDetail_txtQty").value != "") {
        var qtyvalue = parseInt(document.getElementById("ProductDetail_txtQty").value);
        document.getElementById("ProductDetail_txtQty").value = qtyvalue + 1;
    }
    else {
        document.getElementById("ProductDetail_txtQty").value = 1;
    }
    return false;
}

function decQty() {
    if ((document.getElementById("ProductDetail_txtQty").value != "") && (document.getElementById("ProductDetail_txtQty").value != "1")) {
        var qtyvalue = parseInt(document.getElementById("ProductDetail_txtQty").value);
        document.getElementById("ProductDetail_txtQty").value = qtyvalue - 1;
    }
    else {
        document.getElementById("ProductDetail_txtQty").value = 1;
    }
    return false;
}

function changeImage(image, title) {

	$(function() {
        $(".jqzoom").hide();
		$(".jqzoom").remove();
    });
	
	document.getElementById("ProdImage").innerHTML = "";

	document.getElementById("ProdImage").innerHTML = "<a href='/resize.aspx?size=800&amp;url=" + image + "' rel='lightbox' style='margin: 0pt auto; display: block; width: 500px;' title='" + title + "'><img title='" + title + "' src='resize.aspx?url=" + image + "&amp;size=500' alt='" + title + "' id='productImage' class='image'/></a>";


    $(function() {
        $(".jqzoom").jqzoom();
    });

    jQuery(function($) {
        $("a[rel^='lightbox']").slimbox({/* Put custom options here */
    }, null, function(el) {
        return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
    });
});
}

function sortNumber(a, b) {
    return a - b;
}

function setConstantHeight() {
    var divnewsheight = 0;
    var divproductsheight = 0;
    var divcontentheight = 0;
    var leftsidelength = 0;
    
    /* pulling out the heights of the columns */

    if (document.getElementById("productlist")) {
        divproductsheight = document.getElementById("productlist").offsetHeight;
    };
    if (document.getElementById("content")) {
        divcontentheight = document.getElementById("content").offsetHeight;
    };

    /* sorting the heights and finding the biggest */

    leftsidelength = divnewsheight + divproductsheight - 5;
    var sizeArray = new Array(leftsidelength, divcontentheight);
    sizeArray.sort(sortNumber);
    sizeArray.reverse();
    var newMaxSize = sizeArray[0];

    divproductsheight = newMaxSize - divnewsheight;

    /* setting all columns to this new height */

    if (document.getElementById("productlist")) {
        document.getElementById("productlist").style.minHeight = "0";
        document.getElementById("productlist").style.height = divproductsheight + "px";
    };
    if (document.getElementById("content")) {
        document.getElementById("content").style.minHeight = "0";
        document.getElementById("content").style.height = newMaxSize + "px";
    };
};




function FireDefaultButton(event, target) {
    // srcElement is for IE
    var element = event.target || event.srcElement;

    if (13 == event.keyCode && !(element && "textarea" == element.tagName.toLowerCase())) {
        var defaultButton;
        defaultButton = document.getElementById(target);

        if (defaultButton && "undefined" != typeof defaultButton.click) {
            defaultButton.click();
            event.cancelBubble = true;
            if (event.stopPropagation)
                event.stopPropagation();
            return false;
        }
    }
    return true;
}

function setMinHeights(){
    if (document.getElementById("productlist")) {
        document.getElementById("productlist").style.minHeight="300px";
    };
    if (document.getElementById("content")) {
        document.getElementById("content").style.minHeight="300px";
    };
}

$(window).load(function() {
    setConstantHeight();
});

$(document).ready(function() {
    $(".newslettername").click(function() {
        if ($(this).get(0).value == "Name") {
            $(this).get(0).value = "";
        };
    });
    $(".newsletteremail").click(function() {
        if ($(this).get(0).value == "Email address") {
            $(this).get(0).value = "";
        };
    });
	setMinHeights();
});

/*
Slimbox v2.02 - The ultimate lightweight Lightbox clone for jQuery
(c) 2007-2009 Christophe Beyls <http://www.digitalia.be>
MIT-style license.
*/
(function(w) { var E = w(window), u, g, F = -1, o, x, D, v, y, L, s, n = !window.XMLHttpRequest, e = window.opera && (document.compatMode == "CSS1Compat") && (w.browser.version >= 9.3), m = document.documentElement, l = {}, t = new Image(), J = new Image(), H, a, h, q, I, d, G, c, A, K; w(function() { w("body").append(w([H = w('<div id="lbOverlay" />')[0], a = w('<div id="lbCenter" />')[0], G = w('<div id="lbBottomContainer" />')[0]]).css("display", "none")); h = w('<div id="lbImage" />').appendTo(a).append(q = w('<div style="position: relative;" />').append([I = w('<a id="lbPrevLink" href="#" />').click(B)[0], d = w('<a id="lbNextLink" href="#" />').click(f)[0]])[0])[0]; c = w('<div id="lbBottom" />').appendTo(G).append([w('<a id="lbCloseLink" href="#" />').add(H).click(C)[0], A = w('<div id="lbCaption" />')[0], K = w('<div id="lbNumber" />')[0], w('<div style="clear: both;" />')[0]])[0] }); w.slimbox = function(O, N, M) { u = w.extend({ loop: false, overlayOpacity: 0.8, overlayFadeDuration: 400, resizeDuration: 400, resizeEasing: "swing", initialWidth: 250, initialHeight: 250, imageFadeDuration: 400, captionAnimationDuration: 400, counterText: "Image {x} of {y}", closeKeys: [27, 88, 67], previousKeys: [37, 80], nextKeys: [39, 78] }, M); if (typeof O == "string") { O = [[O, N]]; N = 0 } y = E.scrollTop() + ((e ? m.clientHeight : E.height()) / 2); L = u.initialWidth; s = u.initialHeight; w(a).css({ top: Math.max(0, y - (s / 2)), width: L, height: s, marginLeft: -L / 2 }).show(); v = n || (H.currentStyle && (H.currentStyle.position != "fixed")); if (v) { H.style.position = "absolute" } w(H).css("opacity", u.overlayOpacity).fadeIn(u.overlayFadeDuration); z(); k(1); g = O; u.loop = u.loop && (g.length > 1); return b(N) }; w.fn.slimbox = function(M, P, O) { P = P || function(Q) { return [Q.href, Q.title] }; O = O || function() { return true }; var N = this; return N.unbind("click").click(function() { var S = this, U = 0, T, Q = 0, R; T = w.grep(N, function(W, V) { return O.call(S, W, V) }); for (R = T.length; Q < R; ++Q) { if (T[Q] == S) { U = Q } T[Q] = P(T[Q], Q) } return w.slimbox(T, U, M) }) }; function z() { var N = E.scrollLeft(), M = e ? m.clientWidth : E.width(); w([a, G]).css("left", N + (M / 2)); if (v) { w(H).css({ left: N, top: E.scrollTop(), width: M, height: E.height() }) } } function k(M) { w("object").add(n ? "select" : "embed").each(function(O, P) { if (M) { w.data(P, "slimbox", P.style.visibility) } P.style.visibility = M ? "hidden" : w.data(P, "slimbox") }); var N = M ? "bind" : "unbind"; E[N]("scroll resize", z); w(document)[N]("keydown", p) } function p(O) { var N = O.keyCode, M = w.inArray; return (M(N, u.closeKeys) >= 0) ? C() : (M(N, u.nextKeys) >= 0) ? f() : (M(N, u.previousKeys) >= 0) ? B() : false } function B() { return b(x) } function f() { return b(D) } function b(M) { if (M >= 0) { F = M; o = g[F][0]; x = (F || (u.loop ? g.length : 0)) - 1; D = ((F + 1) % g.length) || (u.loop ? 0 : -1); r(); a.className = "lbLoading"; l = new Image(); l.onload = j; l.src = o } return false } function j() { a.className = ""; w(h).css({ backgroundImage: "url(" + o + ")", visibility: "hidden", display: "" }); w(q).width(l.width); w([q, I, d]).height(l.height); w(A).html(g[F][1] || ""); w(K).html((((g.length > 1) && u.counterText) || "").replace(/{x}/, F + 1).replace(/{y}/, g.length)); if (x >= 0) { t.src = g[x][0] } if (D >= 0) { J.src = g[D][0] } L = h.offsetWidth; s = h.offsetHeight; var M = Math.max(0, y - (s / 2)); if (a.offsetHeight != s) { w(a).animate({ height: s, top: M }, u.resizeDuration, u.resizeEasing) } if (a.offsetWidth != L) { w(a).animate({ width: L, marginLeft: -L / 2 }, u.resizeDuration, u.resizeEasing) } w(a).queue(function() { w(G).css({ width: L, top: M + s, marginLeft: -L / 2, visibility: "hidden", display: "" }); w(h).css({ display: "none", visibility: "", opacity: "" }).fadeIn(u.imageFadeDuration, i) }) } function i() { if (x >= 0) { w(I).show() } if (D >= 0) { w(d).show() } w(c).css("marginTop", -c.offsetHeight).animate({ marginTop: 0 }, u.captionAnimationDuration); G.style.visibility = "" } function r() { l.onload = null; l.src = t.src = J.src = o; w([a, h, c]).stop(true); w([I, d, h, G]).hide() } function C() { if (F >= 0) { r(); F = x = D = -1; w(a).hide(); w(H).stop().fadeOut(u.overlayFadeDuration, k) } return false } })(jQuery);

// AUTOLOAD CODE BLOCK (MAY BE CHANGED OR REMOVED)
jQuery(function($) {
    $("a[rel^='lightbox']").slimbox({/* Put custom options here */
}, null, function(el) {
    return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
});
});