
    brands = new Array();
    brands[0] = new Array();
    
    brands[0][0] = '0000000000';
    brands[0][1] = '½Ð¿ï¾Ü¼tµP';

    function init(){
    
        getGlobalBrandList();
        
        if( document.getElementById("daily") != null) getDailyList();

        swapMenu();
           
    }

    function setSeekBrandList(){
        
        var i;
        
        document.sform.brandsn.length = brands.length;

        for( i = 0; i < brands.length; i ++){
        
            document.sform.brandsn.options[i] = new Option( brands[i][1], brands[i][0]);
            
        }
        
    }
    
    function setCompareBrandList(){
            
        if( document.cform.brandsn.length != undefined){        
        
            var i, j;
                        
            for( j = 0; j < document.cform.brandsn.length; j ++){
            
                document.cform.brandsn[j].length = brands.length;
        
                for( i = 0; i < brands.length; i ++){
                
                    document.cform.brandsn[j].options[i] = new Option( brands[i][1], brands[i][0]);
                    
                }            
                
            }
    
        }

        else{

            var i;
            var html;
    
            html = '';
            html += '         <table width="195" border="0" cellpadding="0" cellspacing="0">\n';
            html += '          <tr><td width="195" valign="top"><img src="./mobile/images/mobile_left_bar01.gif" width="187" height="32"></td></tr>\n';
            html += '          <tr><td height="5"></td></tr>\n';
            html += '          <tr><td height="30" align="center">\n';
            html += '               <table width="180" border="0" cellspacing="0" cellpadding="0">\n';
    
            for( i = 1; i < brands.length; i ++){
    
                html += '                <tr><td height="13"><a href="./mobile_brand_list.jsp?sn=' + brands[i][0] + '" class="brandlist">' + brands[i][1] + '</a></td></tr>\n';
    
            }
    
            html += '               </table>\n';
            html += '              </td></tr>\n';
            html += '             </table>\n';
    
            brandlist.innerHTML = html;

            try{

                if( document.tform.brandsn.length != undefined){
                    
                    var j;
                                
                    for( j = 0; j < document.tform.brandsn.length; j ++){
                    
                        document.tform.brandsn[j].length = brands.length;
                
                        for( i = 0; i < brands.length; i ++){
                        
                            document.tform.brandsn[j].options[i] = new Option( brands[i][1], brands[i][0]);
                            
                        }            
                        
                    }
                    
                }
            
            }
            
            catch(e){}
            
        }

    }

    function swapMenu(){

        MM_preloadImages( './left/search_02.gif', './images/more_02.gif', './top/top_icon02.gif', './top/top_icon04.gif', './top/top_icon06.gif', './top/top_icon08.gif', './top/top_icon10.gif', './top/top_icon12.gif', './images/bbs_icon05.gif', './images/bbs_icon08.gif', './images/icon_mobile_02.gif', './images/icon_info_02.gif', './images/icon_bbs_02.gif', './images/icon_photo_02.gif');

    }

    function showNewsSeek(){

        if( document.getElementById('news_seek') != null){
        
            document.getElementById('real_seek').style.display = 'none';
            document.getElementById('false_seek').style.display = 'block';
            
        }
        
    }
    
    function hideNewsSeek(){

        if( document.getElementById('news_seek') != null){
        
            document.getElementById('real_seek').style.display = 'block';
            document.getElementById('false_seek').style.display = 'none';
            
        }        
        
    }
