// Fade Effects on anything with a "hover" class.
$(document).ready(function () {
	$(".hover").hover(function () {
				// on hover
				$(this).stop().animate({
					opacity:1
				},200);
			}, function () {
				// off hover
				$(this).stop().animate({
					opacity:0
				},200);
			});
	
	//FLIR.init({ path: 'facelift/' });
	//FLIR.replace( 'h1', new FLIRStyle({mode:'wrap'}) );FLIR.replace( 'h2', new FLIRStyle({mode:'wrap'}) );
});

