$(document).ready(function() {
    $('body').textResize({
        plus:       '.increase-text-size',          //Increase text size button
        minus:      '.decrease-text-size',          //Decrease text size button
        reset:      '.reset-text-size',           //Reset text size button {optionally}
        pace:       2,                              //How big the textsize jump will be (default 1px)
        original:   13,                             //The original value, to where .reset updates the text-size
        limit:      [10,20]                         //Lower and High limit values. It won't let the text go beyond these
    });
    var cal = {startdate:1991,x:0,y:25};
    $('#from_date').simpleDatepicker(cal);
    $('#to_date').simpleDatepicker(cal);
});
