function loadMainCategory(mode) {

	storeMode = mode; 
	toggleStorePuckBtn(mode);
	
    $('#main_cat').html("<img src='images/loading.gif'/>");
    if(storeMode=='cas'){
    	document.getElementById("container").style.background = 'url(../images/store/contentHolderCM.png)';
    }
    else{
    	document.getElementById("container").style.background = 'url(../images/store/contentHolderBM.png)';
    }
    if(mode) {
	    $('#main_cat').load('/category.html?mode=' + mode + '&r=' + Math.random(), function() {
	    		loadSubCategory(0,mode); //default catId
	    	}
	    );
	}
	else {
	 	$('#main_cat').load('/category.html?r=' + Math.random(), function() {
	    		loadSubCategory(0,mode); //default catId
	    	}
	    );
	}
}

function loadSubCategory(catId,mode) {
    $('#sub_cat').html("<img src='images/loading.gif'/>");    

    if(catId) {
	    $('#sub_cat').load('/subCategory.html?mode=' + mode + '&r=' + Math.random(), function() {
	    		loadItems(mode);
	    	}
	    );
	}
	else {
		$('#sub_cat').load('/subCategory.html?mode='+mode+'&r=' + Math.random(), function() {
	    		loadItems(mode);
	    	}
	    );
	}
}

function loadItems(mode, subCatId, start, count) {
    
    $('#items').html("<table width='701' height='195' border='0' cellpadding='0' cellspacing='0'><tr><td align='middle' valign='middle'><img src='images/store/loading.gif'/></td></tr></table>");
    
    if(subCatId) {
	    $('#items').load('/items.html?mode=' + mode + '&id=' + subCatId + '&start=' + start + '&count=' + count + '&r=' + Math.random(), function() {
	    		loadProductDesc(); //default itemId
	    	}
	    );
	}
	else {
		$('#items').load('/items.html?mode=' + mode + '&r=' + Math.random(), function() {
	    		loadProductDesc(); //default itemId
	    	}
	    );
	}
}

function loadProductDesc(productId) {
    
  	$('#product_desc').html("<table width='634' border='0' cellpadding='0' cellspacing='0'><tr><td colspan='2'><img src='images/store/puckItemDetailTop.png'></td></tr><tr><td width='130' align='right' valign='top' style='background-color:#94afa0;border-left:1px solid #30399b;'>&nbsp;</td></tr><tr><td width='130' align='right' valign='top' style='background-color:#94afa0;border-left:1px solid #30399b;'>&nbsp;</td></tr><tr><td align='middle' valign='middle' style='background-color:#94afa0;border-left:1px solid #30399b;'><img src='images/store/loading_5A.gif'/></td></tr><tr><td width='130' align='right' valign='top' style='background-color:#94afa0;border-left:1px solid #30399b;'>&nbsp;</td></tr><tr><td width='130' align='right' valign='top' style='background-color:#94afa0;border-left:1px solid #30399b;'>&nbsp;</td></tr><tr><td colspan='2'><img src='images/store/puckItemDetailBottom.png'></td></tr></table>");

  	if(productId)
    	$('#product_desc').load('/productDesc.html?id=' + productId + '&r=' + Math.random());
    else
    	$('#product_desc').load('/productDesc.html?id=' + defaultProductId + '&r=' + Math.random());
}

function toggleStorePuckBtn(buttonId) {
	
	switch(buttonId) {
		case 'buy':
			$("#buyButton").attr("src", "images/store/buyModeOvr.png");
			$("#buildButton").attr("src", "images/store/buildMode.png");
			$("#casButton").attr("src", "images/store/cas.png");
			break;
		case 'build':
			$("#buyButton").attr("src", "images/store/buyMode.png");
			$("#buildButton").attr("src", "images/store/buildModeOvr.png");
			$("#casButton").attr("src", "images/store/cas.png");
			break;
		case 'cas':
			$("#buyButton").attr("src", "images/store/buyMode.png");
			$("#buildButton").attr("src", "images/store/buildMode.png");
			$("#casButton").attr("src", "images/store/casOvr.png");
			break;
		default:
			$("#buyButton").attr("src", "images/store/buyModeOvr.png");
			$("#buildButton").attr("src", "images/store/buildMode.png");
			$("#casButton").attr("src", "images/store/cas.png");
			break;
	}
}

function toggleItemHilite(newProdImgId, hiliteURL, normalURL) {
	
	$('#'+hilitedItemId).attr("src", hilitedItemNormalUrl);
	hilitedItemId = newProdImgId;
	$('#'+newProdImgId).attr("src", hiliteURL);
	hilitedItemNormalUrl = normalURL;
	
}

