//
// オリジナルの変数をオーバーライド
//
fileLoadingImage = "/litebox/loading.gif";
fileBottomNavCloseImage = "/litebox/closelabel.gif";
//
// オリジナルのinitLightbox関数をオーバーライド
//
window.onload = function() {
	addRelLightboxAttribute('beta-inner');
	myLightbox = new Lightbox();
};
// 
// rel="lightbox"属性をanchor要素に付加
//
addRelLightboxAttribute = function(id) {
	if (!document.getElementsByTagName) { return; }
	var ele;
	if (id) {
		ele = $(id);
		if (!ele) { return; }
	} else {
		ele = document.body;
	}
	var anchors = ele.getElementsByTagName('a');
	for (var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute('href').match("http://www.luv2luvbaby.com/.shared/image.html?")) {
			anchor.setAttribute('href', anchor.getAttribute('href').replace("http://www.luv2luvbaby.com/.shared/image.html?",""));
		}
		if (anchor.getAttribute('href').match(/jpg$|gif$|png$/)) {
			var rel = (anchor.getAttribute('rel')) ? String(anchor.getAttribute('rel')) : "";
			if (!rel.toLowerCase().match('lightbox')) {
				anchor.setAttribute('rel', rel ? rel+' lightbox[photo]' : 'lightbox[photo]');
			}
		}
	}
};
