/**
 * @author Ivor
 */

 $(document).ready( function () {
 

	initFlir();
	
 	
 });
 
 function initFlir() {
	 	FLIR.init({ path: LINKROOT+'/extensions/facelift/' });
		
		$("h1").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:18, cssAlign:'left' })); } );
		$("h2").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:16 })); } );	 
 }
 
 function checkEmail(sEmail) {
 if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(sEmail)){
	return (true)
	} else {
	return false;
	}
 
 }
 
 
