function lennoxtour() {
	var cover = $('<div class="cover"></div>').click(function(){
		$(this).add('#thinwindow').fadeOut('fast', function() {
			$(this).remove();
		});
	}).css({opacity:0}).appendTo(document.body).fadeTo('normal', 0.7);
	var w_w = 640;
	var w_h = 480;
	var swf = 'http://www.airq-ca.com/res/animations/flv_player.swf';
	var vid = 'http://www.airq-ca.com/res/video/HomeComfortVirtualTour.flv';
	var player = makeSWF(
		swf + '?autoplay=1&vwidth=640&vheight=480&fileName=' + vid,
		640, 480, {
			quality: 'high',
			AllowScriptAccess: 'always'
		}
	);
	$('<div id="thinwindow">'+player+'</div>').appendTo(document.body).css({
		left: cover.width() / 2,
		top: cover.height() / 2 - 25,
		width: 0, height: 50
	}).animate({
		left: cover.width() / 2 - w_w / 2,
		width: w_w
	}, 'slow', function() {
		$(this).animate({
			top: cover.height() / 2 - w_h / 2,
			height: w_h
		}, 'slow');
	});
	return false;
}
