$(document).ready(function(){				
	$("#productDetailsSizeTableBTN").click(function(){	
	
		$("#fixedPageOverlay").css({ display: "block" });
		$("#sizeTable").fadeIn(200);		
	
		var ww = $(window).width();
		var iw = $("#productDetailsSizeTable table").width() + $("#productDetailsSizeTable img").width() + 50;
		
		var wr = $("#wrapper").width();
		var rr = (ww - iw) / 2;
		if (rr < 0) rr = 0;		
		
		$("#sizeTable").css({width: iw + "px", margin: "50px " + rr + "px"});
		$(".fixedPageOverlayClose").css({ width: iw + "px"});
					
	});
	
	$("#sizeTable, #fixedPageOverlay").click(function(){
		$("#sizeTable, #fixedPageOverlay").css({ display: "none" });
	});
});

