var bgbannerbox = {};
$(document).ready(function(){
	/* ボックスのスライドアクションの定義 */
	var boxes = ["bgbannerbox"];
	for(var i=0; i<boxes.length; i++) {
		var n= boxes[i];
		$("#"+n+"content").hide();
		$("#"+n+"switch").click(bgbannerbox.slidebox);
	}
});
/* ボックスのスライドアクション（コールバック関数） */
bgbannerbox.slidebox = function() {
	var id = $(this).attr("id");
	var m = id.match(/^([a-z0-9]+)switch$/);
	if(! m) {return false;}
	bgbannerbox.slide_switch_icon_change(id);
	if($("#"+m[1]+"content").is(":hidden")) {
		$("#"+m[1]+"content").slideDown("fast");
	} else {
		$("#"+m[1]+"content").slideUp("fast");
	}
	return false;
};

bgbannerbox.slide_switch_icon_change = function(id) {
	var img = document.getElementById(id);
	if(! img) { return; }
	var src = img.src;
	if(src.match(/1\.gif$/)) {
		src = src.replace(/1\.gif$/, "0.gif");
	} else if(src.match(/0\.gif$/)) {
		src = src.replace(/0\.gif$/, "1.gif");
	}
	img.src = src;
};

