// JavaScript Document
/* version jquery  */

$(document).ready(function(){
	FLIR.init(new FLIRStyle( { mode:'wrap' } ));
	$("h1").each( function() { FLIR.replace(this); } );
})
/* version normal javascript */
/*
FLIR.init( new FLIRStyle( { mode:'wrap' } ) ); // Or, instead of 'wrap', try 'progressive'.
FLIR.auto(['h1']);
*/
