jQuery(function(){
	var groups = new Array();
	jQuery('a[rel^=lightbox]').each(function(){
		var rel = jQuery(this).attr('rel');
		if(!groups[rel]){
			jQuery('a[rel=' + rel + ']').lightBox();
			groups[rel] = 1;
		}
	});
});

/* ギャラリーページ */

function showImage01(myPicURL){
	document.images["myBigImage01"].src = myPicURL;
}

function showImage02(myPicURL){
	document.images["myBigImage02"].src = myPicURL;
}

function showImage03(myPicURL){
	document.images["myBigImage03"].src = myPicURL;
}

function showImage04(myPicURL){
	document.images["myBigImage04"].src = myPicURL;
}


jQuery(function(){
	var suffix = '_l';
    jQuery(".chgPic").mouseover(function() {
		var attr = jQuery(this).attr("src").replace(/\.(jpg|jpeg|png|gif)/i, suffix+'.$1');
		jQuery(this).parents("ul").prev().find(".showImg").attr("src", attr);
    });
});

