$(document).ready(function(){
	FLIR.init({path: '/skin1/scripts/facelift/'});
	FLIR.replace('h1');
	FLIR.replace('h2#productTitle', new FLIRStyle({ mode:'wrap' }));
	FLIR.replace('h2.productTitle', new FLIRStyle({ mode:'wrap' }));
	FLIR.replace('h2.price', new FLIRStyle({ mode:'wrap' }));
	FLIR.replace('h1#recommendedProducts', new FLIRStyle({ mode:'wrap' }));
	FLIR.replace('h2#locateStore');
    FLIR.onreplacing = function(el, fstyle) {
       el.style.visibility = 'hidden'; // no need to use jQuery here
    }
    FLIR.onreplaced = function(el, fstyle) {
       el.style.visibility = 'visible'; // no need to use jQuery here
    }	
});