
function box_select(item) {
    /*product_boxSlide.slideOut();*/
    $('new_box').style.display = "none";
    $('bestseller_box').style.display = "none";

    if($('link_new_box')) $('link_new_box').style.color = "black";
    if($('link_bestseller_box')) $('link_bestseller_box').style.color = "black";


    if($('td_new_box')) $('td_new_box').style.background = "#E8E8E8";
    if($('td_bestseller_box')) $('td_bestseller_box').style.background = "#E8E8E8";


   /* $('product_box_loadingEffect').style.display = "block";*/

    box_select2(item);
}

function box_select2(item) {
/*    $('product_box_loadingEffect').style.display = "none";*/

    $(item).style.display = "block";
	$('td_' + item).style.background = "#555555";
    $('link_' + item).style.color = "#FFFFFF";

    /*product_boxSlide.slideIn();*/
}