/**
* Purpose:              Font sizer class, handles increasing and decreasing font size of a page.
*                       It increases the font in 10% increments. By getting the level / 10 + 1.
*                       i.e. level 2 is .2 + 1 so 1.2 or 120%.
*
* Requires:             JQuery and the JQuery cookies plugin.
*
* Use:                  Setup the fontsizer jQuery.FontSizer.Init(options); the two options are
*                       min and max, for the min level and max level.
*                       Defaults are min: -3 and max: 5.
*
* Author:               Stefan Sedich (stefan.sedich@gmail.com
*/
jQuery.FontSizer = {

        level: 0,

        options : {            
                min: -3,
                max: 6,
				normal: 0
        },

        Init : function(options) {
                if(options)
		    		jQuery.FontSizer.options = jQuery.extend(jQuery.FontSizer.options, options);

                //Get the current level from cookies.
                var level = (jQuery.cookie('font_level') != null) ? jQuery.cookie('font_level') : jQuery.FontSizer.options.normal;                      

                //Set the font size to the current leve.
                jQuery.FontSizer.SetSize(level);

        },

        IncreaseSize : function() {
                if((jQuery.FontSizer.level) + 1 <= jQuery.FontSizer.options.max) {            
                        //If we have not exceded the max level,
                        //Get the next level and the set the size to this level.
                        var next = (parseInt(jQuery.FontSizer.level) + 1);
                        jQuery.FontSizer.SetSize(next);  
                }

        },

        DecreaseSize : function() {
                if((jQuery.FontSizer.level - 1) >= jQuery.FontSizer.options.min) {
                        //If we have not exceded the min level,
                        //Get the next level and the set the size to this level.
                        var next = (parseInt(jQuery.FontSizer.level) - 1);
                        jQuery.FontSizer.SetSize(next);  
                }      
        },      

        SetSize: function(level) {

                //Set the current level in the member variable and the cookie.
                jQuery.FontSizer.level = level;      
                jQuery.cookie('font_level', level);

                //Work out the new em value and set it.
                var level = (level / 10) + 1;
                jQuery("body").css("fontSize", level+"em");    

        },

        Reset: function() {
            
            //Reset the level back to 0
            jQuery.FontSizer.SetSize(jQuery.FontSizer.options.normal);
        
        }

}; 