//-----------------------------------------------------------------------------------------------------------
/* JSMainKLayer constructor */
function JSMainKLayer(){
	
}
/* set prototype */
JSMainKLayer.prototype = new JSKLayer();
JSMainKLayerPrototype = JSMainKLayer.prototype;
//-----------------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------------------
JSMainKLayerPrototype.setLayers = function() {
	var content_div_id 					= 'content_div';
	var content_left_div_id 			= 'content_left_div';
	var content_right_bottom_div_id  	= 'content_right_bottom_div';
	var content_left_div_height 		= this.getLayerHeight(content_left_div_id);
	if (content_left_div_height) {
		this.setLayerHeight(content_div_id, content_left_div_height);
		this.setLayerHeight(content_right_bottom_div_id, content_left_div_height - 5);
	}
}
//-----------------------------------------------------------------------------------------------------------