/******************************************************************/
/******************************************************************/
/*******指定日にnew表示を消す**************************************/
/******************************************************************/
function change(){
log_change();
news_change();
prd_change();
info_change();
dev_change();
about_change();
shop_change();
}

/*******更新履歴***************************************************/
function log_change(){
today = new Date();
deldate = new Date(2011, 2-1, 8+7);/**更新日（※１月は０）**/
obj=document.getElementById("log_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_log_n.gif";}
}

/*******トピック***************************************************/
function news_change(){
today = new Date();
deldate = new Date(2010, 12-1, 27+10);/**更新日（※１月は０）**/
obj=document.getElementById("news_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_news_n.gif";}
}

/*******商品情報***************************************************/
function prd_change(){
today = new Date();
deldate = new Date(2010, 12-1, 1+10);/**更新日（※１月は０）**/
obj=document.getElementById("prd_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_prd_n.gif";}
}

/*******お知らせ***************************************************/
function info_change(){
today = new Date();
deldate = new Date(2011, 2-1, 8+10);/**更新日（※１月は０）**/
obj=document.getElementById("info_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_info_n.gif";}
}

/*******開発状況***************************************************/
function dev_change(){
today = new Date();
deldate = new Date(2010, 11-1, 13+10);/**更新日（※１月は０）**/
obj=document.getElementById("dev_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_dev_n.gif";}
}

/*******会社情報***************************************************/
function about_change(){
today = new Date();
deldate = new Date(2010, 10-1, 13+10);/**更新日（※１月は０）**/
obj=document.getElementById("about_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_about_n.gif";}
}

/*******通信販売***************************************************/
function shop_change(){
today = new Date();
deldate = new Date(2010, 10-1, 13+10);/**更新日（※１月は０）**/
obj=document.getElementById("shop_");
if (today < deldate){obj.src = "http://www.a-label.jp/cg/menu_shop_n.gif";}
}


