FLIR.init( { path: '/flir/' } , new FLIRStyle( { output:'png' , mode: 'wrap' } ) );
FLIR.auto( [ 'h1', 'h2', 'h3', 'div#blog_description' ] );

$().ready(function() {
  $('#commentage').jqm({
    trigger: 'a.comment_trigger',
    overlay: 85, /* 0-100 (int) : 0 is off/transparent, 100 is opaque */
    overlayClass: 'blackOverlay'})
    .jqDrag('.jqDrag'); /* make dialog draggable, assign handle to title */
  
  // Close Button Highlighting. IE doesn't support :hover. Surprise?
  $('input.jqmdX')
  .hover(
    function(){ $(this).addClass('jqmdXFocus'); }, 
    function(){ $(this).removeClass('jqmdXFocus'); })
  .focus( 
    function(){ this.hideFocus=true; $(this).addClass('jqmdXFocus'); })
  .blur( 
    function(){ $(this).removeClass('jqmdXFocus'); });

});