/*************************************************************************
    This code is from Dynamic Web Coding at dyn-web.com
    Copyright 2004-5 by Sharon Paine 
    See Terms of Use at www.dyn-web.com/bus/terms.html
    regarding conditions under which you may use this code.
    This notice must be retained in the code as is!
*************************************************************************/

// setDefaults arguments: size unit, default size, minimum, maximum
// optional array of elements or selectors to apply these defaults to
dw_fontSizerDX.setDefaults("px", 11, 9, 24, ['div#column_main01'] );
dw_fontSizerDX.setDefaults("px", 16, 9, 30, ['div#column_main01 h1'] );
dw_fontSizerDX.setDefaults("px", 14, 9, 24, ['div#column_main01 h2'] );
dw_fontSizerDX.setDefaults("px", 12, 9, 20, ['div#column_main01 h3'] );
dw_fontSizerDX.setDefaults("px", 11, 9, 20, ['div#column_main01 h4'] );


// set arguments: default size, minimum, maximum
// array of elements or selectors to apply these settings to
dw_fontSizerDX.set(11, 9, 24, ['div#column_main01'] );
dw_fontSizerDX.set(16, 9, 30, ['div#column_main01 h1'] );
dw_fontSizerDX.set(14, 9, 24, ['div#column_main01 h2'] );
dw_fontSizerDX.set(12, 9, 20, ['div#column_main01 h3'] );
dw_fontSizerDX.set(11, 9, 24, ['div#column_main01 h4'] );


dw_fontSizerDX.init();