function getPageInformation(name){
	var headerName = name;
	if(name == 'sumai' || name == 'style_recipe'){
		headerName = 'style';
	} else if(name == 'shopmaster' || name == 'shop_contact'){
		headerName = 'shop';
	} else if(name == 'present_monitor' || name == 'present_park'){
		headerName = 'monitor';
	}

	var ecLeftbarId = '';
	if(name == 'shopmaster' || name == 'shop_static' || name == 'shop_contact' || name == 'present_monitor'){
		ecLeftbarId = 'ecleftbar';
	}
	displayHeader('globalNav','subNav', 'footer', 'sidebar', ecLeftbarId, headerName, name);

	if(name == 'sumai'){
		getBiggapons('sumai');
	} else if(headerName == 'shop'){
		getBiggapons('ec');
	} else if(name == 'present_park'){
		getBiggapons('present_park');
	} else if(name == 'axa'){
		getBiggapons('axa');
	} else {
		getBiggapons('category');
	}
	getNotificationLoop('emergencyNotification', 99, 0);
}

function getBiggaponLoop(id1, id2, num){
	if($(id1)){
		getBiggapon(id1, id2, num);
	} else {
		setTimeout(function(){getBiggaponLoop(id1, id2, num)}, 5);
	}
}

function getNotificationLoop(id, num1, num2){
	if($(id)){
		getNotification(id, num1, num2);
	} else {
		setTimeout(function(){getNotificationLoop(id, num1, num2)}, 5);
	}
}

