// JavaScript Document

$(document).ready(function(){

	//FLIR.init();
	
	// All H2s that are children of div#entries will be replaced with the
	// "illuminating" font that is defined in config-flir.php.  The "wrap" 
	// mode is also set which is good to use when replacing long headers.
	//FLIR.replace( 'h1' , new FLIRStyle({ cFont:'ArtOfIlluminating' , mode:'wrap' }) );
	//FLIR.replace('h1');
	
	// All H3 elements will be replaced with the tribal font.
	//FLIR.replace( 'h3' , new FLIRStyle({ cFont:'tribal' }) );
	
	//FLIR.init();
	//$("h1").each( function() { FLIR.replace(this, new FLIRStyle({ cFont:'okolaks' }) ); } );
	
	//FLIR.replace( 'h1' , new FLIRStyle({ cFont:'okolaks' }) );
	//FLIR.replace('h1', new FLIRStyle({ cFont:'okolaks', output:'png' }) );
	FLIR.init( { path: 'fileadmin/mediabank/www.paragona.com/res/flir2/' } );
	//FLIR.auto(); 
	FLIR.replace( 'h2#registration_lang' , new FLIRStyle({ cFont:'helveticam' }) );
	// Or, you can pass an array of selectors to the auto function to be replaced.
	//FLIR.auto( [ 'h1', 'h2', 'h3.special', 'strong#important' ] );	
	FLIR.replace( ['a#topnav','div.menu_head'] , new FLIRStyle({ cFont:'helveticaro' }) );
	FLIR.replace( 'a#l2nav' , new FLIRStyle({ cFont:'helveticaro' , mode:'wrap' }) );	
	FLIR.replace( 'a#l3nav' , new FLIRStyle({ cFont:'helveticaro' }) );
	FLIR.replace( 'h2#splash_header' , new FLIRStyle({ cFont:'helveticaro', mode:'wrap' }) );
	FLIR.replace( 'h1' , new FLIRStyle({ cFont:'helvetica' , mode:'wrap' }) );
	//FLIR.replace( 'h2' , new FLIRStyle({ cFont:'helveticaro' , mode:'wrap' }) );

	
	

	
	//$("h1").each( function() { FLIR.replace(this, new FLIRStyle({ cFont:'helvetica' }) ); } );
});
	  


