﻿function get_menuImages_baseURL () {
	/*for mac local test*/
	//return '/Users/hsaitoh/Sites/suncorona.co.jp/web-content/format_images';
	
	/*for windows local test*/
	//return 'Y:/Sites/suncorona.co.jp/suncorona.co.jp/web-content/format_images';
	
	/*for 5sense.jp test*/
	//return 'http://www.ap-demo.com/5sense/format_images';
	/*for http://www.suncorona.co.jp*/
	return 'http://www.suncorona.co.jp/format_images/';
}

function init ()
{
	//submenu open if applicable
	if (document.URL.match(/(\/news\/|\\news\\)/i)) displaySubmenu('news');
	if (document.URL.match(/(\/prof\/|\\prof\\)/i)) displaySubmenu('prof');
	if (document.URL.match(/(\/product\/|\\product\\)/i)) displaySubmenu('product');
	if (document.URL.match(/(\/develop\/|\\develop\\)/i)) displaySubmenu('develop');
	if (document.URL.match(/(\/csr\/|\\csr\\)/i)) displaySubmenu('csr');
	if (document.URL.match(/(\/recruit\/|\\recruit\\)/i)) displaySubmenu('recruit');


	//global_menu_item img src replace if applicable
	if (document.URL.match(/\/news\//i)) displayCurrentmenuitem('news');
	if (document.URL.match(/\/prof\//i)) displayCurrentmenuitem('prof');
	if (document.URL.match(/\/product\//i)) displayCurrentmenuitem('product');
	if (document.URL.match(/\/develop\//i)) displayCurrentmenuitem('develop');
	if (document.URL.match(/\/csr\//i)) displayCurrentmenuitem('csr');
	if (document.URL.match(/\/recruit\//i)) displayCurrentmenuitem('recruit');


}

