<!--

var img_load_flag = false;

function init(){
	request_b = img_l('request');
	present_b = img_l('present');
	entry_b = img_l('entry');
	bbs_b = img_l('bbs');
	juke_b = img_l('juke');
	zip_hot_100_b = img_l('zip_hot_100');
	zpop_countdown_30_b = img_l('zpop_countdown_30');
	zip_dance_hits_20_b = img_l('zip_dance_hits_20');
	img_load_flag = true;
}

function img_l(img_name){
	new_img = new Image();
	new_img.src = "../img1/" + img_name + "_b.gif";
	return new_img;
}

function img_c(img_name){
	if(img_load_flag){ 	document[img_name].src = "../img1/" + img_name + "_b.gif"; }
}

function img_r(img_name){
	document[img_name].src = "../img1/" + img_name + ".gif";
}
//-->
