
$(document).ready(function(){
FLIR.init({ path:'/js/facelift-1.2/' });

	$('#menu').css('opacity', '0.8').hover(
		function(){
			$(this).stop().animate({
				'opacity': '1'
			}, 350);
		},
		function(){
			$(this).stop().animate({
				'opacity': '0.8'
			}, 1300);
		}
	);
	$("h2").each( function() { FLIR.replace(this); } );
	$("h3").each( function() { FLIR.replace(this); } );
	$("h4").each( function() { FLIR.replace(this); } );
	$(".replace").each( function() { FLIR.replace(this, new FLIRStyle({mode:'wrap'})); } );

});
