/**
 * @author Ivor
 */

 $(document).ready( function () {
 
 	FLIR.init({ path: LINKROOT+'/extensions/facelift/' });
	
	$("h1").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:25, cssAlign:'center' })); } );
	$("h2").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:24 })); } );
	$(".sf-menu a.first").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:19 })); } );
	//$("div.bigbutton a").each( function() { FLIR.replace(this, new FLIRStyle({ cSize:24 })); } );
	
 	
 });
 
 
 function checkEmail(sEmail) {
 if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(sEmail)){
	return (true)
	} else {
	return false;
	}
 
 }
