$(document).ready(function(){
     if($(".font, .font2, .font3, .font4").length) {
            $.insert(WB_URL+'/modules/font-effect/jquery-fonteffect.js');  //http://www.iofo.it/jquery/fonteffect/
                     $(".font").FontEffect({ 
					        shadow :true, // Apply the shadow effect 
							shadowColor :"#666",// The color of the shadow 
							shadowOffsetTop :5, // The top offset position (px) 
							shadowOffsetLeft:5, // The left offset position (px) 
							shadowBlur :1, // The shadow blur 1=none,2=low,3=high 
							shadowOpacity :0.1, // The opacity of the shadow (0=none,1=all) 
							
							hideText :false // Hide the source text 
					});
					$(".font2").FontEffect({ 
					        mirror :true, // Apply the mirror effect 
							mirrorColor :"666", // [object color] The color of the reflex 
							mirrorOffset :-5, // The distance from text 
							mirrorHeight :50, // The height of the reflex (perc.)* 
							mirrorDetail :1, // The reflex detail 1=high,2=medium,3=low 
							mirrorTLength :50, // The length of the sfumature (perc.)* 
							mirrorTStart :0.2 // The starting opacity of the reflex (0-1) 
					});
					$(".font3").FontEffect({ 
					        outline :true, // Apply the outline effect 
							outlineColor1 :"#b22222", // [find contrasting] The upper left outline color 
							outlineColor2 :"#b22222", // [outlineColor1] the lower right outline color 
							outlineWeight :1 // 1=light,2=normal,3=bold 
					});
					$(".font4").FontEffect({ 
					        gradient :true, // Apply the gradient effect 
							gradientColor :"", // The color of the gradient 
							gradientPosition:20, // The start position of the gradient (perc.)* 
							gradientLength :50, // The length of the gradient (perc.)* 
							gradientSteps :20 // the steps of the gradient 
					});
		}			
});
