function tOverlay(){
	var vOverlayHeight	= $('#tOverlayContent').outerHeight();
	$('#tOverlay, #tOverlayBackground').outerHeight(vOverlayHeight);
	$('#tOverlayBackground').css('opacity','0.85');
	$('#tOverlayClose').click(function(e){
		e.preventDefault();
		$('#tOverlay').animate({opacity:'0.0'},500,function(){
			$(this).css('display','none');
		});
	});
}
