var pos = $j( '.optionsbox' ).offset();
var sizechart = $j( '<div class="sizecharttable"></div>' );

$j( '.wrap' ).append( sizechart );


sizechart.css( { position: 'absolute', top: '260px', right: '10px', display: 'none' } );

if( product == 'shirt' )
{
	sizechart.load( 'http://www.trikoton.com/media/trikoton_code/sizing_shirt.html' );
	sizechart.css( { top: '190px' } );
}
else if( product == 'legging' )
{
	sizechart.load( 'http://www.trikoton.com/media/trikoton_code/sizing_legging.html' );
}
else if( product == 'pullunder' )
{
	sizechart.load( 'http://www.trikoton.com/media/trikoton_code/sizing_pullunder.html' );
}


$j( '.sizechart' ).click(
	function()
	{
		sizechart.css( { display: 'block' } );
		
		return false;
	}
);