Event.observe ( window, 'load', function () {
				
	client = new Client ();

	if ( $('wrapper').getHeight () < client.getViewPortHeight () ) {
	
		$('text').setStyle ( {
	
			height : client.getViewPortHeight () - ( $('header').getHeight () + $('footer').getHeight () + 60 ) + 'px'

		} );

	};

	if ( $('check_out') != 'undefined' && $('check_out') != null) {

		m = new Control.Modal ( 'check_out', {
				opacity : 0.8,
				position : 'absolute',
				fade : true,
				overlayCloseOnClick : false,
			    autoOpenIfLinked : true,
				beforeClose : function () {
					location.href = '/index/shoppingc-checkout-action';		
				}
		});

	};

} );