$(function() {
	$(document).pngFix({base: BASE+"/"});
		
	resize();
 	$(window).resize(function() {resize();})
})



function resize() {
	h = $(window).height()-$("#menu").height()-$("#header").height();
	if ($("#center .section").height()<h) {
		$("#center .section").css("min-height",h);
		$("#center #product .detail").css("min-height",h);
	}

}
