/* lightpop loader */

$(function() {
/* IEの時だけlightpopを使わないようにする */
	if (typeof document.body.style.maxHeight != "undefined")
	{
		if (!/*@cc_on!@*/false)
		{
			// Not IE.
			$('a[rel*=lightbox]').lightpop();
		}
	}
});

