// JavaScript Document
jq(document).ready( function() {
  jq( "#font-resize a" ).textresizer({
    target: "#container",
    type: "css",
    sizes: [
      // Small. Index 0
      { "font-size"  : "85%" },
            // Nomal. Index 1
      { "font-size"  : "95%"  },
      // Medium. Index 2
      { "font-size"  : "110%" },
      // Medium. Index 3
      { "font-size"  : "120%" }
    ],
    selectedIndex: 1
  }); 
});
