function content_right_flush( ) {
	var div_boxes = document.getElementById( 'vb-teaser' );
	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( 'vb-teaser' );
	div_target.replaceChild( element, div_target.firstChild );
}

cst_book_controller.prototype.dom_ready = function( ) {
	this.defaults.int_display_search_programs = 3;
	window.setTimeout('content_right_flush( )', 0);
	window.setTimeout(a(content_right_place, this.info_cart.display_element),0);
}

cst_book_controller.prototype.controller_init_custom = function( ) {
	 jQuery( document ).ready( this.dom_ready.bind( this ) );
}

function a(f,p) {
   return function() { return f(p) };
}

