$(document).ready(function() {
  if ($('div.titled-container').length == 0 || ($.browser.msie && $.browser.version == 6.0)) {
    $('span#font-sizes').hide()
  }
    
  $('#font-regular').click(function() {
   $(".font-sizer").css({'font-weight': 'normal'})
   $(this).css({'font-weight': 'bold'})
   $('div.titled-container').css({'font-size': '12px'})
  })

  $('#font-larger').click(function() {
   $(".font-sizer").css({'font-weight': 'normal'})
   $(this).css({'font-weight': 'bold'})
   $('div.titled-container').css({'font-size': '14px'})
  })

  $('#font-large').click(function() {
   $(".font-sizer").css({'font-weight': 'normal'})
   $(this).css({'font-weight': 'bold'})
   $('div.titled-container').css({'font-size': '16px'})
  })
});