$(function () {

	isHome = true;

	if(bFade) {
		var img = new Image();
		img.onload = function() {
			setTimeout(function () {
				$("#homefx,#imagefx").animate({ opacity: 0 }, 2000, function () {
					$("#homefx,#imagefx").remove();
				});
			}, 1000);
		};
		img.src = "images/bg-body.jpg";
	} else {
		$("#homefx,#imagefx").remove();
	}

});
