function resizeContainer(e)
{
	var containerHeight = $(".productsdetail").height();
	containerHeight = containerHeight + 200;
	

	//if ( containerHeight < $(window).height() )
	//{
		containerHeight = $(window).height();
		$("#container").height( containerHeight );
	//}
}

// しのせんこく
function showHeight(e) {
	var containerWidth = $(window).width();
	$("#container").html( containerWidth );
}

$(document).ready(function() {
						   
winHeight = $(window).height();
winWidth = $(window).width();

resizeContainer();


$(".productImg").center({
});

$(".top").center({
	vertical: false
});
$(".right").center({
	horizontal: false
});
//$(".bottom").center({
	//vertical: false
//});
$(".left").center({
	horizontal: false
});


$('#header').exFixed(); // for IE6
$('.productsdetail').exFixed(); // for IE6
$('#footer').exFixed(); // for IE6


}); 



