﻿function SetTableSettingProductType(productType) {
    if (productType != null) {
        var flashMovie = $get('TableSetting');
        if (flashMovie != null && flashMovie.SetProductType != null) {
            flashMovie.SetProductType(productType);
        }
    }
}

function SetMenuItem(productType) {
    if (productType != null) {
        aTags = document.getElementsByTagName('a');
        for (i = 0; i < aTags.length; i++) {
            if ((aTags[i].getAttributeNode('class') != null) && (aTags[i].getAttributeNode('class').nodeValue).indexOf("selectedMenuItem") != -1) {
                aTags[i].setAttribute("class", "");
                aTags[i].setAttribute("className", "");
            }
        }

        if (productType != '' && productType != 'cups_mugs' && productType != 'jugs_sugarbowls' && productType != 'teapots' && productType != 'bowls' && productType != 'plates_platters') {
            productType = 'misc';
        }
        
        var productMenuItem = $get(productType);
        if (productMenuItem != null) {
            productMenuItem.setAttribute("class", "selectedMenuItem");
            productMenuItem.setAttribute("className", "selectedMenuItem");
        }
    }
}

