/*

Variables for sg_layout_ini.js

*/

var ART_HEIGHT_MIN = 100; //minium height the View can be
var ART_HEIGHT_MAX = 200; //maximiun height for View, set to 0 if there is no limit, set = to ART_HEIGHT_MIN to make the view non scaleable

var NAVIGATION_AREA = 180; //Number of pixels used by navigation or non article text
							// this variable should be detected at initialization, but is not yet

var LINE_HEIGHT_MOD = .2;  	// the line height ='s the font_size (see below) * LINE_HEIGHT_MOD + font_size
var MAX_LINE_HEIGHT = .5;	// the modifier can adjust itself in the event of a roudning error

var ORIGINAL_LINE_HEIGHT_MOD = LINE_HEIGHT_MOD;

var CONTENTS = "pageContents";  // name of HTML element containing the text body
var VIEWER = "textParent"; //name of HTML element to hold column(s)
var IMG_VIEWER = "imageViewer"; //name of HTML element to hold images(s)

var IMG_INLINE = false; //set to true if images should appear inline, more processor intesive
					
var COLUMN_NUM = 2; // base mode for the number of columns present*/

var font_size = 11; //base font-size
var font_size_MAX = 26;
var font_size_MIN = 9;
