function content_right_flush( ) {
	var div_boxes = document.getElementById( 'whs-teaser-right' );
	var div_box_count = parseInt( div_boxes.childNodes.length, 10 );
	for( var i = 0; i < div_box_count; i++ ) {
		if( div_boxes.childNodes[i].style ) div_boxes.childNodes[i].style.display = 'none';
	}
}
function content_right_place( element ) {
	var div_target = document.getElementById( 'whs-teaser-right' );
	div_target.replaceChild( element, div_target.firstChild );
}

cst_book_controller.prototype.dom_ready = function( ) {
	content_right_flush( );
	content_right_place( this.info_cart.display_element );
}

cst_book_controller.prototype.controller_init_custom = function( ) {
	 jQuery( document ).ready( this.dom_ready.bind( this ) );
}
cst_book_form_40_voucher_address.prototype.form_options_custom = function( select_box ) {
	$('#postal', select_box ).remove();	
	$('#postal-me', select_box ).remove();	
}
