$(document).ready(function() {

	if (false) {

		$("a.more-detail-a").each(function () {
			href = $(this).attr("href");
			$(this).attr("href",href + "?ajax=true")
		});

		$("a.fpl-thumb").each(function () {
			href = $(this).attr("href");
			$(this).attr("href",href + "?ajax=true")
		});

		$("a.more-detail-a").fancybox({
			'zoomSpeedIn':		300,
			'zoomSpeedOut':	300,
			'overlayShow':		true,
			'frameWidth': 800,
			'frameHeight': 500,
			'overlayOpacity': 0.9
		});

		$("a.fpl-thumb").fancybox({
			'zoomSpeedIn':		300,
			'zoomSpeedOut':	300,
			'overlayShow':		true,
			'frameWidth': 800,
			'frameHeight': 500,
			'overlayOpacity': 0.9
		});

	}

});


