jQuery(function($) {
	/**
	 * jquery.lightbox.js settings
	 */
	var lightBoxOptions = {
		imageLoading:	'http://www.hardi.co.jp/wp-content/themes/wp-hardi/js/images/loading.gif',	// (string) Path and the name of the loading icon
		imageBtnPrev:	'http://www.hardi.co.jp/wp-content/themes/wp-hardi/js/images/prevlabel.gif',	// (string) Path and the name of the prev button image
		imageBtnNext:	'http://www.hardi.co.jp/wp-content/themes/wp-hardi/js/images/nextlabel.gif',	// (string) Path and the name of the next button image
		imageBtnClose:	'http://www.hardi.co.jp/wp-content/themes/wp-hardi/js/images/closelabel.gif',	// (string) Path and the name of the close btn
		imageBlank:	'http://www.hardi.co.jp/wp-content/themes/wp-hardi/js/images/lightbox-blank.gif'	// (string) Path and the name of a blank image (one pixel)
	};
	// article_content
	$('#works_list').each(function() {
		$('a[href$=.jpg], a[href$=.png], a[href$=.gif]', this).lightBox(lightBoxOptions);
	});

	// mowamowa
	$('#works_list li img').mowamowa();
	$('#works_list li img.mowamowa').pngfix();

});

(function($) {

	/**
	 * Overlay mowamowa
	 */
	$.fn.mowamowa = function() {

		var imgs = this;
		var mowamowaSrc = 'http://www.hardi.co.jp/wp-content/themes/wp-hardi/images/works/mowamowa.png';

		imgs.each(function() {
			$('<img src="' + mowamowaSrc + '" class="mowamowa" />').insertAfter(this);
		});

		return this;
	}


})(jQuery);

